File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ()
You can’t perform that action at this time.
0 commit comments