This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-csv.git


The following commit(s) were added to refs/heads/master by this push:
     new e9d466ec Remove trailing whitespace
e9d466ec is described below

commit e9d466ecc5bc84f34fda5a5a624b9b5d1c282715
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Sep 18 18:12:35 2024 -0400

    Remove trailing whitespace
    
    Use final
---
 src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java 
b/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
index 7e35f83a..82e16562 100644
--- a/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
+++ b/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
@@ -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.
      *

Reply via email to