Remove trailing whitepsace.

This commit is contained in:
Gary Gregory 2021-02-15 11:13:12 -05:00
parent bf2f8093a4
commit 493dfdcd7d
1 changed files with 1 additions and 1 deletions

View File

@ -791,7 +791,7 @@ public class CSVParserTest {
// Iterator hasNext() shouldn't break sequence // Iterator hasNext() shouldn't break sequence
try (CSVParser parser = CSVFormat.DEFAULT.parse(new StringReader(fiveRows))) { try (CSVParser parser = CSVFormat.DEFAULT.parse(new StringReader(fiveRows))) {
final Iterator<CSVRecord> iter = parser.iterator(); final Iterator<CSVRecord> iter = parser.iterator();
int recordNumber = 0; int recordNumber = 0;
while (iter.hasNext()) { while (iter.hasNext()) {