You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2013/09/13 10:43:25 UTC

svn commit: r1522814 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java

Author: britter
Date: Fri Sep 13 08:43:25 2013
New Revision: 1522814

URL: http://svn.apache.org/r1522814
Log:
Use correct return type in JavaDoc - a list is returned, not an array.

Modified:
    commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java

Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java?rev=1522814&r1=1522813&r2=1522814&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java (original)
+++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java Fri Sep 13 08:43:25 2013
@@ -258,12 +258,12 @@ public final class CSVParser implements 
     }
 
     /**
-     * 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
      */