Correct JavaDoc that was pointing to method parseFile which has moved to the Parser
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1610473 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
13f5a0a63c
commit
83df300f6c
|
@ -59,10 +59,10 @@ import java.util.Set;
|
|||
* </pre>
|
||||
*
|
||||
* <p>
|
||||
* The {@link CSVRecord} provides static methods to parse other input types, for example:
|
||||
* The {@link CSVParser} provides static methods to parse other input types, for example:
|
||||
* </p>
|
||||
*
|
||||
* <pre>CSVParser parser = CSVFormat.parseFile(file, CSVFormat.EXCEL);</pre>
|
||||
* <pre>CSVParser parser = CSVParser.parse(file, StandardCharsets.US_ASCII, CSVFormat.EXCEL);</pre>
|
||||
*
|
||||
* <h2>Defining formats</h2>
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue