Skip to content

Commit 562b277

Browse files
committed
Checkstyle: Line is too long
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1742461 13f79535-47bb-0310-9956-ffa450edef68
1 parent 3568bba commit 562b277

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,8 @@ private CSVFormat(final char delimiter, final Character quoteChar, final QuoteMo
507507
final Character commentStart, final Character escape, final boolean ignoreSurroundingSpaces,
508508
final boolean ignoreEmptyLines, final String recordSeparator, final String nullString,
509509
final Object[] headerComments, final String[] header, final boolean skipHeaderRecord,
510-
final boolean allowMissingColumnNames, final boolean ignoreHeaderCase, boolean trim, boolean trailingDelimiter) {
510+
final boolean allowMissingColumnNames, final boolean ignoreHeaderCase, boolean trim,
511+
boolean trailingDelimiter) {
511512
this.delimiter = delimiter;
512513
this.quoteCharacter = quoteChar;
513514
this.quoteMode = quoteMode;
@@ -1205,7 +1206,8 @@ public CSVFormat withHeader(final String... header) {
12051206
* </p>
12061207
*
12071208
* @param headerEnum
1208-
* the enum defining the header, {@code null} if disabled, empty if parsed automatically, user specified otherwise.
1209+
* the enum defining the header, {@code null} if disabled, empty if parsed automatically, user
1210+
* specified otherwise.
12091211
*
12101212
* @return A new CSVFormat that is equal to this but with the specified header
12111213
* @see #withHeader(String...)

0 commit comments

Comments
 (0)