Skip to content
This repository was archived by the owner on Jun 3, 2026. It is now read-only.

Commit 1fa12a6

Browse files
committed
Checkstyle: Line is longer than 120 characters (found 141).
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1602904 13f79535-47bb-0310-9956-ffa450edef68
1 parent 4b2a4ca commit 1fa12a6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +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 " + Arrays.toString(header));
323+
throw new IllegalArgumentException("The header contains a duplicate entry: '" + hdr + "' in "
324+
+ Arrays.toString(header));
324325
}
325326
}
326327
this.header = header.clone();

0 commit comments

Comments
 (0)