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
This commit is contained in:
Gary D. Gregory 2014-06-16 15:52:50 +00:00
parent fa116dd46c
commit cdbb1cd1a6

View File

@ -320,8 +320,8 @@ public final class CSVFormat implements Serializable {
Set<String> dupCheck = new HashSet<String>();
for (String hdr : header) {
if (!dupCheck.add(hdr)) {
throw new IllegalArgumentException("The header contains a duplicate entry: '" + hdr + "' in "
+ Arrays.toString(header));
throw new IllegalArgumentException("The header contains a duplicate entry: '" + hdr + "' in " +
Arrays.toString(header));
}
}
this.header = header.clone();