Fix Javadoc for org.apache.commons.csv.CSVParser.parse(Path, Charset,

CSVFormat). GitHub PR #13.
This commit is contained in:
Gary Gregory 2016-08-23 14:29:37 -07:00
parent 5f14d16a66
commit f05b653d08
1 changed files with 1 additions and 6 deletions

View File

@ -192,12 +192,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
}
/**
* Creates a parser for the given {@link File}.
*
* <p><strong>Note:</strong> This method internally creates a FileReader using
* {@link java.io.FileReader#FileReader(java.io.File)} which in turn relies on the default encoding of the JVM that
* is executing the code. If this is insufficient create a URL to the file and use
* {@link #parse(URL, Charset, CSVFormat)}</p>
* Creates a parser for the given {@link Path}.
*
* @param path
* a CSV file. Must not be null.