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
commit 5506bdb5cdc1308c49b88119778a62792d50b3cc Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Jul 9 11:19:41 2021 -0400 Better name. --- src/main/java/org/apache/commons/csv/CSVFormat.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index 550f516..add2c2c 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -1703,12 +1703,12 @@ public final class CSVFormat implements Serializable { * See also the various static parse methods on {@link CSVParser}. * </p> * - * @param in the input stream + * @param reader the input stream * @return a parser over a stream of {@link CSVRecord}s. * @throws IOException If an I/O error occurs */ - public CSVParser parse(final Reader in) throws IOException { - return new CSVParser(in, this); + public CSVParser parse(final Reader reader) throws IOException { + return new CSVParser(reader, this); } /**