Skip to content

Commit 5506bdb

Browse files
committed
Better name.
1 parent f6f0832 commit 5506bdb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1703,12 +1703,12 @@ public boolean isQuoteCharacterSet() {
17031703
* See also the various static parse methods on {@link CSVParser}.
17041704
* </p>
17051705
*
1706-
* @param in the input stream
1706+
* @param reader the input stream
17071707
* @return a parser over a stream of {@link CSVRecord}s.
17081708
* @throws IOException If an I/O error occurs
17091709
*/
1710-
public CSVParser parse(final Reader in) throws IOException {
1711-
return new CSVParser(in, this);
1710+
public CSVParser parse(final Reader reader) throws IOException {
1711+
return new CSVParser(reader, this);
17121712
}
17131713

17141714
/**

0 commit comments

Comments
 (0)