We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c75343 commit cefed9bCopy full SHA for cefed9b
src/test/java/org/apache/commons/csv/issues/JiraCsv167Test.java
@@ -77,7 +77,7 @@ public void testParse() throws IOException {
77
int comments = 0;
78
int records = 0;
79
try (Reader reader = getTestReader(); CSVParser parser = format.parse(reader)) {
80
- for (CSVRecord csvRecord : parser) {
+ for (final CSVRecord csvRecord : parser) {
81
records++;
82
if (csvRecord.hasComment()) {
83
comments++;
0 commit comments