Skip to content

Commit

Permalink
Remove trailing whitepsace.
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Feb 15, 2021
1 parent bf2f809 commit 493dfdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/org/apache/commons/csv/CSVParserTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ public void testIteratorSequenceBreaking() throws IOException {

// Iterator hasNext() shouldn't break sequence
try (CSVParser parser = CSVFormat.DEFAULT.parse(new StringReader(fiveRows))) {

final Iterator<CSVRecord> iter = parser.iterator();
int recordNumber = 0;
while (iter.hasNext()) {
Expand Down

0 comments on commit 493dfdc

Please sign in to comment.