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 483ba85  Unnecessary semicolon.
483ba85 is described below

commit 483ba855f240d45698ba393e4691807cc9a93869
Author: Gary Gregory <gardgreg...@gmail.com>
AuthorDate: Sat Feb 23 08:20:53 2019 -0500

    Unnecessary semicolon.
---
 src/main/java/org/apache/commons/csv/CSVParser.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java 
b/src/main/java/org/apache/commons/csv/CSVParser.java
index 6e121e8..6ec059f 100644
--- a/src/main/java/org/apache/commons/csv/CSVParser.java
+++ b/src/main/java/org/apache/commons/csv/CSVParser.java
@@ -572,7 +572,7 @@ public final class CSVParser implements 
Iterable<CSVRecord>, Closeable {
         public void remove() {
             throw new UnsupportedOperationException();
         }
-    };
+    }
 
     /**
      * Parses the next record from the current point in the stream.

Reply via email to