Avoid IDE warning
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1592639 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d030030d3d
commit
a3260ed930
|
@ -74,7 +74,7 @@ public class PerformanceTest {
|
|||
for (final CSVRecord record : format.parse(in)) {
|
||||
recordCount++;
|
||||
if (traverseColumns) {
|
||||
for (final String value : record) {
|
||||
for (@SuppressWarnings("unused") final String value : record) {
|
||||
// do nothing for now
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue