Skip to content

Commit 1e83d1f

Browse files
committed
Better Javadoc hopefully.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1461150 13f79535-47bb-0310-9956-ffa450edef68
1 parent 40948cd commit 1e83d1f

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public class CSVFormat implements Serializable {
5959

6060
/**
6161
* Comma separated format as defined by <a href="http://tools.ietf.org/html/rfc4180">RFC 4180</a>.
62+
* <h3>RFC 4180:</h3>
6263
* <ul>
6364
* <li>withDelimiter(',')</li>
6465
* <li>withQuoteChar('"')</li>
@@ -72,12 +73,16 @@ public class CSVFormat implements Serializable {
7273

7374
/**
7475
* Standard comma separated format, as for {@link #RFC4180} but allowing empty lines.
76+
* <h3>RFC 4180:</h3>
7577
* <ul>
7678
* <li>withDelimiter(',')</li>
7779
* <li>withQuoteChar('"')</li>
78-
* <li>withIgnoreEmptyLines(true)</li>
7980
* <li>withLineSeparator(CRLF)</li>
8081
* </ul>
82+
* <h3>Additional:</h3>
83+
* <ul>
84+
* <li>withIgnoreEmptyLines(true)</li>
85+
* </ul>
8186
*/
8287
public static final CSVFormat RFC4180_EMPTY_LINES =
8388
newBuilder()

0 commit comments

Comments
 (0)