Skip to content

Commit a3260ed

Browse files
committed
Avoid IDE warning
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1592639 13f79535-47bb-0310-9956-ffa450edef68
1 parent d030030 commit a3260ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/csv/perf/PerformanceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ private long parse(final Reader in, final boolean traverseColumns) throws IOExce
7474
for (final CSVRecord record : format.parse(in)) {
7575
recordCount++;
7676
if (traverseColumns) {
77-
for (final String value : record) {
77+
for (@SuppressWarnings("unused") final String value : record) {
7878
// do nothing for now
7979
}
8080
}

0 commit comments

Comments
 (0)