This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-csv.git
The following commit(s) were added to refs/heads/master by this push:
new 493dfdc Remove trailing whitepsace.
493dfdc is described below
commit 493dfdcd7d02ee3d63ecb08c9b8663f2456a9f1c
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Feb 15 11:13:12 2021 -0500
Remove trailing whitepsace.
---
src/test/java/org/apache/commons/csv/CSVParserTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/java/org/apache/commons/csv/CSVParserTest.java
b/src/test/java/org/apache/commons/csv/CSVParserTest.java
index 5e4f973..d7fcf73 100644
--- a/src/test/java/org/apache/commons/csv/CSVParserTest.java
+++ b/src/test/java/org/apache/commons/csv/CSVParserTest.java
@@ -791,7 +791,7 @@ public class CSVParserTest {
// 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()) {