No need to initialize values to defaults.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1635119 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2014-10-29 12:58:01 +00:00
parent 28520d57d8
commit 3abd9b380a

View File

@ -41,10 +41,10 @@ final class ExtendedBufferedReader extends BufferedReader {
private int lastChar = UNDEFINED;
/** The count of EOLs (CR/LF/CRLF) seen so far */
private long eolCounter = 0;
private long eolCounter;
/** The position, which is number of characters read so far */
private long position = 0;
private long position;
private boolean closed;