Fix Javadoc for org.apache.commons.csv.CSVParser.parse(Path, Charset,
CSVFormat). GitHub PR #13.
This commit is contained in:
parent
5f14d16a66
commit
f05b653d08
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue