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

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

View File

@ -138,11 +138,6 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
/** /**
* Creates a parser for the given {@link File}. * 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>
*
* @param file * @param file
* a CSV file. Must not be null. * a CSV file. Must not be null.
* @param charset * @param charset