Author: ggregory
Date: Tue Mar 26 14:19:00 2013
New Revision: 1461150

URL: http://svn.apache.org/r1461150
Log:
Better Javadoc hopefully.

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

Modified: 
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
URL: 
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java?rev=1461150&r1=1461149&r2=1461150&view=diff
==============================================================================
--- 
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java 
(original)
+++ 
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java 
Tue Mar 26 14:19:00 2013
@@ -59,6 +59,7 @@ public class CSVFormat implements Serial
 
     /**
      * Comma separated format as defined by <a 
href="http://tools.ietf.org/html/rfc4180";>RFC 4180</a>.
+     * <h3>RFC 4180:</h3>
      * <ul>
      * <li>withDelimiter(',')</li>
      * <li>withQuoteChar('"')</li>
@@ -72,12 +73,16 @@ public class CSVFormat implements Serial
 
     /**
      * Standard comma separated format, as for {@link #RFC4180} but allowing 
empty lines.
+     * <h3>RFC 4180:</h3>
      * <ul>
      * <li>withDelimiter(',')</li>
      * <li>withQuoteChar('"')</li>
-     * <li>withIgnoreEmptyLines(true)</li>
      * <li>withLineSeparator(CRLF)</li>
      * </ul>
+     * <h3>Additional:</h3>
+     * <ul>
+     * <li>withIgnoreEmptyLines(true)</li>
+     * </ul>
      */
     public static final CSVFormat RFC4180_EMPTY_LINES =
             newBuilder()


Reply via email to