IndentedLineFormatter changes for revisions 10795:10865

No significant change. The trivial addition of == true has not been keep.

Command line:

svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r10795:10865 https://svn.osgeo.org/geotools/trunk/modules/library/metadata/src/main/java/org/geotools/io/IndentedLineWriter.java
Revision 10795Revision 10865
/*
 * Geotools 2 - OpenSource mapping toolkit
 * (C) 2004, Geotools Project Managment Committee (PMC)
 * (C) 2004, Institut de Recherche pour le Développement
 *
 *    This library is free software; you can redistribute it and/or
 *    modify it under the terms of the GNU Lesser General Public
/*
 * Geotools 2 - OpenSource mapping toolkit
 * (C) 2004, Geotools Project Managment Committee (PMC)
 * (C) 2004, Institut de Recherche pour le D�veloppement
 *
 *    This library is free software; you can redistribute it and/or
 *    modify it under the terms of the GNU Lesser General Public
package org.geotools.io;

// Standard I/O
import java.io.Writer;
import java.io.FilterWriter;
import java.io.PrintWriter;
import java.io.IOException;

// Geotools dependencies
import org.geotools.resources.Utilities;
import org.geotools.resources.Arguments;


/**
package org.geotools.io;

// Standard I/O
import java.io.FilterWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.Writer;

import org.geotools.resources.Arguments;
import org.geotools.resources.Utilities;


/**
        out.write("] ");
    }
    out.write(c);
    if (newLine = (c=='\r' || c=='\n')) {
        waitLF = (c=='\r');
    }
}
        out.write("] ");
    }
    out.write(c);
    if ((newLine = (c=='\r' || c=='\n')) == true) {
        waitLF = (c=='\r');
    }
}