mirror of
https://github.com/apache/commons-csv.git
synced 2025-02-06 01:59:07 +00:00
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:
parent
28520d57d8
commit
3abd9b380a
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user