Use correct return type in JavaDoc - a list is returned, not an array.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1522814 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-09-13 08:43:25 +00:00
parent 1299090016
commit 20e6c4e617
1 changed files with 3 additions and 3 deletions

View File

@ -258,12 +258,12 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
}
/**
* Parses the CSV input according to the given format and returns the content as an array of {@link CSVRecord}
* entries.
* Parses the CSV input according to the given format and returns the content as a list of
* {@link CSVRecord CSVRecords}.
* <p/>
* The returned content starts at the current parse-position in the stream.
*
* @return list of {@link CSVRecord} entries, may be empty
* @return list of {@link CSVRecord CSVRecords}, may be empty
* @throws IOException
* on parse error or input read-failure
*/