Fix for compilation on 1.4, remove autoboxing

This commit is contained in:
Kevin Glass 2005-07-16 10:36:13 +00:00
parent 8d51cf81a1
commit 5e72533772
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ public class XPMFile {
String color = line.substring(6);
// we always assume type is color, and supplied as #<r><g><b>
return new Object[] { key, Integer.parseInt(color, 16)};
return new Object[] { key, new Integer(Integer.parseInt(color, 16))};
}
/**