Fix boxing and unboxing warnings.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1508940 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-07-31 15:51:20 +00:00
parent 2b14b16d4b
commit 7909a7c386
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ public class CSVRecord implements Serializable, Iterable<String> {
throw new IllegalArgumentException(
String.format(
"Index for header '%s' is %d but CSVRecord only has %d values!",
name, index.intValue(), values.length));
name, index, Integer.valueOf(values.length)));
}
}