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:
parent
2b14b16d4b
commit
7909a7c386
|
@ -88,7 +88,7 @@ public class CSVRecord implements Serializable, Iterable<String> {
|
||||||
throw new IllegalArgumentException(
|
throw new IllegalArgumentException(
|
||||||
String.format(
|
String.format(
|
||||||
"Index for header '%s' is %d but CSVRecord only has %d values!",
|
"Index for header '%s' is %d but CSVRecord only has %d values!",
|
||||||
name, index.intValue(), values.length));
|
name, index, Integer.valueOf(values.length)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue