Skip to content
This repository was archived by the owner on Jun 3, 2026. It is now read-only.

Commit 3abd9b3

Browse files
committed
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
1 parent 28520d5 commit 3abd9b3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ final class ExtendedBufferedReader extends BufferedReader {
4141
private int lastChar = UNDEFINED;
4242

4343
/** The count of EOLs (CR/LF/CRLF) seen so far */
44-
private long eolCounter = 0;
44+
private long eolCounter;
4545

4646
/** The position, which is number of characters read so far */
47-
private long position = 0;
47+
private long position;
4848

4949
private boolean closed;
5050

0 commit comments

Comments
 (0)