Make checkstyle happy: Line was longer than 120 chars, file contained tabs

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1512625 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-08-10 11:07:15 +00:00
parent 1e70eaaaf4
commit e0b79fe691
1 changed files with 18 additions and 18 deletions

View File

@ -64,8 +64,8 @@ final class ExtendedBufferedReader extends BufferedReader {
/** /**
* Returns the last character that was read as an integer (0 to 65535). This will be the last character returned by * Returns the last character that was read as an integer (0 to 65535). This will be the last character returned by
* any of the read methods. This will not include a character read using the {@link #lookAhead()} method. If no * any of the read methods. This will not include a character read using the {@link #lookAhead()} method. If no
* character has been read then this will return {@link Constants#UNDEFINED}. If the end of the stream was reached on the * character has been read then this will return {@link Constants#UNDEFINED}. If the end of the stream was reached
* last read then this will return {@link Constants#END_OF_STREAM}. * on the last read then this will return {@link Constants#END_OF_STREAM}.
* *
* @return the last character that was read * @return the last character that was read
*/ */
@ -157,22 +157,22 @@ final class ExtendedBufferedReader extends BufferedReader {
return eolCounter + 1; // Allow for counter being incremented only at EOL return eolCounter + 1; // Allow for counter being incremented only at EOL
} }
public boolean isClosed() { public boolean isClosed() {
return closed; return closed;
} }
/** /**
* Closes the stream. * Closes the stream.
* *
* @throws IOException * @throws IOException
* If an I/O error occurs * If an I/O error occurs
*/ */
@Override @Override
public void close() throws IOException { public void close() throws IOException {
// Set ivars before calling super close() in case close() throws an IOException. // Set ivars before calling super close() in case close() throws an IOException.
closed = true; closed = true;
lastChar = END_OF_STREAM; lastChar = END_OF_STREAM;
super.close(); super.close();
} }
} }