Explict boxing
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1301860 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
aee6c50e28
commit
7d07c1915c
|
@ -194,7 +194,7 @@ public class CSVParser implements Iterable<CSVRecord> {
|
|||
// build the name to index mappings
|
||||
if (header != null) {
|
||||
for (int i = 0; i < header.length; i++) {
|
||||
headerMapping.put(header[i], i);
|
||||
headerMapping.put(header[i], Integer.valueOf(i));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue