From 562b277bee032eb21ab578a6093317ee4ba21bcf Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Thu, 5 May 2016 19:48:41 +0000 Subject: [PATCH] Checkstyle: Line is too long git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1742461 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/csv/CSVFormat.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index 02ed2af9..caeca106 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -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 { *

* * @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...)