Skip to content

Commit 32ffe82

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

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
@@ -384,8 +384,8 @@ private Map<String, Integer> initializeHeader() throws IOException {
384384
final boolean containsHeader = hdrMap.containsKey(header);
385385
final boolean emptyHeader = header.trim().isEmpty();
386386
if (containsHeader && (!emptyHeader || (emptyHeader && !this.format.getIgnoreEmptyHeaders()))) {
387-
throw new IllegalArgumentException("The header contains a duplicate name: \"" + header
388-
+ "\" in " + Arrays.toString(headerRecord));
387+
throw new IllegalArgumentException("The header contains a duplicate name: \"" + header +
388+
"\" in " + Arrays.toString(headerRecord));
389389
}
390390
hdrMap.put(header, Integer.valueOf(i));
391391
}

0 commit comments

Comments
 (0)