We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6f0832 commit 5506bdbCopy full SHA for 5506bdb
1 file changed
src/main/java/org/apache/commons/csv/CSVFormat.java
@@ -1703,12 +1703,12 @@ public boolean isQuoteCharacterSet() {
1703
* See also the various static parse methods on {@link CSVParser}.
1704
* </p>
1705
*
1706
- * @param in the input stream
+ * @param reader the input stream
1707
* @return a parser over a stream of {@link CSVRecord}s.
1708
* @throws IOException If an I/O error occurs
1709
*/
1710
- public CSVParser parse(final Reader in) throws IOException {
1711
- return new CSVParser(in, this);
+ public CSVParser parse(final Reader reader) throws IOException {
+ return new CSVParser(reader, this);
1712
}
1713
1714
/**
0 commit comments