Skip to content

Commit 05fc4d1

Browse files
committed
Use final.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1748096 13f79535-47bb-0310-9956-ffa450edef68
1 parent 275a843 commit 05fc4d1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/apache/commons/csv/CSVParserTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,15 +237,15 @@ public void testDefaultFormat() throws IOException {
237237
final String[][] res_comments = { { "a", "b#" }, { "\n", " ", "#" }, };
238238

239239
try (final CSVParser parser = CSVParser.parse(code, format)) {
240-
List<CSVRecord> records = parser.getRecords();
240+
final List<CSVRecord> records = parser.getRecords();
241241
assertTrue(records.size() > 0);
242242

243243
Utils.compare("Failed to parse without comments", res, records);
244244

245245
format = CSVFormat.DEFAULT.withCommentMarker('#');
246246
}
247247
try (final CSVParser parser = CSVParser.parse(code, format)) {
248-
List<CSVRecord> records = parser.getRecords();
248+
final List<CSVRecord> records = parser.getRecords();
249249

250250
Utils.compare("Failed to parse with comments", res_comments, records);
251251
}

0 commit comments

Comments
 (0)