Skip to content

Commit 7d07c19

Browse files
committed
Explict boxing
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1301860 13f79535-47bb-0310-9956-ffa450edef68
1 parent aee6c50 commit 7d07c19

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ private void initializeHeader(CSVFormat format) throws IOException {
194194
// build the name to index mappings
195195
if (header != null) {
196196
for (int i = 0; i < header.length; i++) {
197-
headerMapping.put(header[i], i);
197+
headerMapping.put(header[i], Integer.valueOf(i));
198198
}
199199
}
200200
}

0 commit comments

Comments
 (0)