Remove trailing whitespace

Use final
This commit is contained in:
Gary Gregory 2024-09-18 18:12:35 -04:00
parent 9f4bf36ecc
commit e9d466ecc5
1 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ final class ExtendedBufferedReader extends UnsynchronizedBufferedReader {
}
@Override
public void mark(int readAheadLimit) throws IOException {
public void mark(final int readAheadLimit) throws IOException {
lineNumberMark = lineNumber;
lastCharMark = lastChar;
positionMark = position;
@ -71,7 +71,7 @@ final class ExtendedBufferedReader extends UnsynchronizedBufferedReader {
position = positionMark;
super.reset();
}
/**
* Closes the stream.
*