Skip to content

Commit 7909a7c

Browse files
committed
Fix boxing and unboxing warnings.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1508940 13f79535-47bb-0310-9956-ffa450edef68
1 parent 2b14b16 commit 7909a7c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/csv/CSVRecord.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public String get(final String name) {
8888
throw new IllegalArgumentException(
8989
String.format(
9090
"Index for header '%s' is %d but CSVRecord only has %d values!",
91-
name, index.intValue(), values.length));
91+
name, index, Integer.valueOf(values.length)));
9292
}
9393
}
9494

0 commit comments

Comments
 (0)