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 6b718c3 Update CSVParser.parse(File, Charset, CSVFormat) from IO to NIO. 6b718c3 is described below commit 6b718c32fe6615496b0231367a170174d34a4f8e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jul 3 15:02:20 2021 -0400 Update CSVParser.parse(File, Charset, CSVFormat) from IO to NIO. --- src/main/java/org/apache/commons/csv/CSVParser.java | 1 - 1 file changed, 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 1df57fa..3224013 100644 --- a/src/main/java/org/apache/commons/csv/CSVParser.java +++ b/src/main/java/org/apache/commons/csv/CSVParser.java @@ -21,7 +21,6 @@ import static org.apache.commons.csv.Token.Type.TOKEN; import java.io.Closeable; import java.io.File; -import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader;