Skip to content

Commit cefed9b

Browse files
committed
Use final
1 parent 8c75343 commit cefed9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/apache/commons/csv/issues/JiraCsv167Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public void testParse() throws IOException {
7777
int comments = 0;
7878
int records = 0;
7979
try (Reader reader = getTestReader(); CSVParser parser = format.parse(reader)) {
80-
for (CSVRecord csvRecord : parser) {
80+
for (final CSVRecord csvRecord : parser) {
8181
records++;
8282
if (csvRecord.hasComment()) {
8383
comments++;

0 commit comments

Comments
 (0)