From 20e6c4e6174b7a4f861f33730130e48eb549214e Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Fri, 13 Sep 2013 08:43:25 +0000 Subject: [PATCH] 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 --- src/main/java/org/apache/commons/csv/CSVParser.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java b/src/main/java/org/apache/commons/csv/CSVParser.java index f00f15a9..e4f91c86 100644 --- a/src/main/java/org/apache/commons/csv/CSVParser.java +++ b/src/main/java/org/apache/commons/csv/CSVParser.java @@ -258,12 +258,12 @@ public final class CSVParser implements Iterable, 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}. *

* 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 */