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:
Sebastian Bazley 2012-03-17 04:11:03 +00:00
parent aee6c50e28
commit 7d07c1915c
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}
}
}