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 abd7de4  Javadoc.
abd7de4 is described below

commit abd7de428312c7e7f20874a6d74c74d5855c2d77
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun May 24 16:08:08 2020 -0400

    Javadoc.
---
 src/main/java/org/apache/commons/csv/CSVParser.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java 
b/src/main/java/org/apache/commons/csv/CSVParser.java
index 07aba51..8345a15 100644
--- a/src/main/java/org/apache/commons/csv/CSVParser.java
+++ b/src/main/java/org/apache/commons/csv/CSVParser.java
@@ -190,7 +190,7 @@ public final class CSVParser implements 
Iterable<CSVRecord>, Closeable {
      * @param file
      *            a CSV file. Must not be null.
      * @param charset
-     *            A Charset
+     *            The Charset to decode the given file.
      * @param format
      *            the CSVFormat used for CSV parsing. Must not be null.
      * @return a new parser
@@ -217,7 +217,7 @@ public final class CSVParser implements 
Iterable<CSVRecord>, Closeable {
      * @param inputStream
      *            an InputStream containing CSV-formatted input. Must not be 
null.
      * @param charset
-     *            a Charset.
+     *            The Charset to decode the given file.
      * @param format
      *            the CSVFormat used for CSV parsing. Must not be null.
      * @return a new CSVParser configured with the given reader and format.
@@ -241,7 +241,7 @@ public final class CSVParser implements 
Iterable<CSVRecord>, Closeable {
      * @param path
      *            a CSV file. Must not be null.
      * @param charset
-     *            A Charset
+     *            The Charset to decode the given file.
      * @param format
      *            the CSVFormat used for CSV parsing. Must not be null.
      * @return a new parser

Reply via email to