Skip to content

Commit e9d466e

Browse files
committed
Remove trailing whitespace
Use final
1 parent 9f4bf36 commit e9d466e

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
@@ -57,7 +57,7 @@ final class ExtendedBufferedReader extends UnsynchronizedBufferedReader {
5757
}
5858

5959
@Override
60-
public void mark(int readAheadLimit) throws IOException {
60+
public void mark(final int readAheadLimit) throws IOException {
6161
lineNumberMark = lineNumber;
6262
lastCharMark = lastChar;
6363
positionMark = position;
@@ -71,7 +71,7 @@ public void reset() throws IOException {
7171
position = positionMark;
7272
super.reset();
7373
}
74-
74+
7575
/**
7676
* Closes the stream.
7777
*

0 commit comments

Comments
 (0)