Skip to content

Commit fa116dd

Browse files
committed
Format "for".
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1602906 13f79535-47bb-0310-9956-ffa450edef68
1 parent 1fa12a6 commit fa116dd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ private CSVFormat(final char delimiter, final Character quoteChar,
318318
this.header = null;
319319
} else {
320320
Set<String> dupCheck = new HashSet<String>();
321-
for(String hdr : header) {
321+
for (String hdr : header) {
322322
if (!dupCheck.add(hdr)) {
323323
throw new IllegalArgumentException("The header contains a duplicate entry: '" + hdr + "' in "
324324
+ Arrays.toString(header));

0 commit comments

Comments
 (0)