This repository was archived by the owner on Jun 3, 2026. It is now read-only.
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 @@ -207,14 +207,15 @@ public final class CSVFormat implements Serializable {
207207 * Settings are:
208208 * </p>
209209 * <ul>
210- * <li>{@link #withDelimiter(char) withDelimiter(',')}</li>
211- * <li>{@link #withQuote(char) withQuote('"')}</li>
212- * <li>{@link #withRecordSeparator(String) withRecordSeparator("\r\n")}</li>
213- * <li>{@link #withIgnoreEmptyLines(boolean) withIgnoreEmptyLines(false)}</li>
214- * <li>{@link #withAllowMissingColumnNames(boolean) withAllowMissingColumnNames(true)}</li>
210+ * <li>{@link #withDelimiter(char) withDelimiter(',')}</li>
211+ * <li>{@link #withQuote(char) withQuote('"')}</li>
212+ * <li>{@link #withRecordSeparator(String) withRecordSeparator("\r\n")}</li>
213+ * <li>{@link #withIgnoreEmptyLines(boolean) withIgnoreEmptyLines(false)}</li>
214+ * <li>{@link #withAllowMissingColumnNames(boolean) withAllowMissingColumnNames(true)}</li>
215215 * </ul>
216216 * <p>
217- * Note: this is currently like {@link #RFC4180} plus {@link #withAllowMissingColumnNames(boolean) withAllowMissingColumnNames(true)}.
217+ * Note: this is currently like {@link #RFC4180} plus {@link #withAllowMissingColumnNames(boolean)
218+ * withAllowMissingColumnNames(true)}.
218219 * </p>
219220 */
220221 public static final CSVFormat EXCEL = DEFAULT .withIgnoreEmptyLines (false ).withAllowMissingColumnNames ();
You can’t perform that action at this time.
0 commit comments