Checkstyle: Line is too long

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1742461 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2016-05-05 19:48:41 +00:00
parent 3568bba22f
commit 562b277bee
1 changed files with 4 additions and 2 deletions

View File

@ -507,7 +507,8 @@ public final class CSVFormat implements Serializable {
final Character commentStart, final Character escape, final boolean ignoreSurroundingSpaces,
final boolean ignoreEmptyLines, final String recordSeparator, final String nullString,
final Object[] headerComments, final String[] header, final boolean skipHeaderRecord,
final boolean allowMissingColumnNames, final boolean ignoreHeaderCase, boolean trim, boolean trailingDelimiter) {
final boolean allowMissingColumnNames, final boolean ignoreHeaderCase, boolean trim,
boolean trailingDelimiter) {
this.delimiter = delimiter;
this.quoteCharacter = quoteChar;
this.quoteMode = quoteMode;
@ -1205,7 +1206,8 @@ public final class CSVFormat implements Serializable {
* </p>
*
* @param headerEnum
* the enum defining the header, {@code null} if disabled, empty if parsed automatically, user specified otherwise.
* the enum defining the header, {@code null} if disabled, empty if parsed automatically, user
* specified otherwise.
*
* @return A new CSVFormat that is equal to this but with the specified header
* @see #withHeader(String...)