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

Commit 07a73d2

Browse files
committed
Fix checkstyle error
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1592600 13f79535-47bb-0310-9956-ffa450edef68
1 parent 4e89209 commit 07a73d2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,8 +372,8 @@ private Map<String, Integer> initializeHeader() throws IOException {
372372
if (header != null) {
373373
for (int i = 0; i < header.length; i++) {
374374
if (hdrMap.containsKey(header[i])) {
375-
throw new IllegalStateException("The header contains duplicate names: "
376-
+ Arrays.toString(header));
375+
throw new IllegalStateException("The header contains duplicate names: " +
376+
Arrays.toString(header));
377377
}
378378
hdrMap.put(header[i], Integer.valueOf(i));
379379
}

0 commit comments

Comments
 (0)