Skip to content

Commit cdbb1cd

Browse files
committed
Checkstyle: '+' should be on the previous line.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1602907 13f79535-47bb-0310-9956-ffa450edef68
1 parent fa116dd commit cdbb1cd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,8 @@ private CSVFormat(final char delimiter, final Character quoteChar,
320320
Set<String> dupCheck = new HashSet<String>();
321321
for (String hdr : header) {
322322
if (!dupCheck.add(hdr)) {
323-
throw new IllegalArgumentException("The header contains a duplicate entry: '" + hdr + "' in "
324-
+ Arrays.toString(header));
323+
throw new IllegalArgumentException("The header contains a duplicate entry: '" + hdr + "' in " +
324+
Arrays.toString(header));
325325
}
326326
}
327327
this.header = header.clone();

0 commit comments

Comments
 (0)