Skip to content

Commit 06dda31

Browse files
committed
Remove trailing white spaces on all lines.
1 parent 7cc7b59 commit 06dda31

2 files changed

Lines changed: 4 additions & 4 deletions

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
@@ -1598,7 +1598,7 @@ public String toString() {
15981598
}
15991599
if (quoteMode != null) {
16001600
sb.append(' ');
1601-
sb.append("QuoteMode=<").append(quoteMode).append('>');
1601+
sb.append("QuoteMode=<").append(quoteMode).append('>');
16021602
}
16031603
if (isCommentMarkerSet()) {
16041604
sb.append(' ');

src/test/java/org/apache/commons/csv/CSVFormatTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ private void assertNotEquals(String name, String type, Object left, Object right
6969
fail("Objects must not compare equal for " + name + "(" + type + ")");
7070
}
7171
if (left.hashCode() == right.hashCode()) {
72-
fail("Hash code should not be equal for " + name + "(" + type + ")");
72+
fail("Hash code should not be equal for " + name + "(" + type + ")");
7373
}
7474
}
7575

@@ -196,7 +196,7 @@ public void testEqualsHash() throws Exception {
196196
}
197197
}
198198
}
199-
}
199+
}
200200
}
201201

202202
@Test
@@ -1174,5 +1174,5 @@ public void testWithSystemRecordSeparator() {
11741174
final CSVFormat formatWithRecordSeparator = CSVFormat.DEFAULT.withSystemRecordSeparator();
11751175
assertEquals(System.getProperty("line.separator"), formatWithRecordSeparator.getRecordSeparator());
11761176
}
1177-
1177+
11781178
}

0 commit comments

Comments
 (0)