We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f4bf36 commit e9d466eCopy full SHA for e9d466e
1 file changed
src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
@@ -57,7 +57,7 @@ final class ExtendedBufferedReader extends UnsynchronizedBufferedReader {
57
}
58
59
@Override
60
- public void mark(int readAheadLimit) throws IOException {
+ public void mark(final int readAheadLimit) throws IOException {
61
lineNumberMark = lineNumber;
62
lastCharMark = lastChar;
63
positionMark = position;
@@ -71,7 +71,7 @@ public void reset() throws IOException {
71
position = positionMark;
72
super.reset();
73
74
-
+
75
/**
76
* Closes the stream.
77
*
0 commit comments