Better name.

This commit is contained in:
Gary Gregory 2021-07-09 11:19:41 -04:00
parent f6f08321f6
commit 5506bdb5cd
1 changed files with 3 additions and 3 deletions

View File

@ -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);
}
/**