Skip to content

Commit 152ce04

Browse files
committed
Checkstyle: line length.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1635145 13f79535-47bb-0310-9956-ffa450edef68
1 parent 5605ef2 commit 152ce04

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)