You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2014/01/16 20:07:07 UTC

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

Author: ggregory
Date: Thu Jan 16 19:07:07 2014
New Revision: 1558889

URL: http://svn.apache.org/r1558889
Log:
Javadoc.

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=1558889&r1=1558888&r2=1558889&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 Thu Jan 16 19:07:07 2014
@@ -320,6 +320,8 @@ public final class CSVParser implements 
 
     /**
      * Initializes the name to index mapping if the format defines a header.
+     * 
+     * @return null if the format has no header.
      */
     private Map<String, Integer> initializeHeader() throws IOException {
         Map<String, Integer> hdrMap = null;