Replaced implicit boxing with explicit boxing in Java file.

main
Philipp Wiesemann 2013-11-10 17:42:01 +01:00
parent 2d67178149
commit bbf0f62be9
1 changed files with 4 additions and 4 deletions

View File

@ -845,7 +845,7 @@ class SDLJoystickHandler_API12 extends SDLJoystickHandler {
int[] deviceIds = InputDevice.getDeviceIds();
for(int i=0; i<deviceIds.length; i++) {
if( (InputDevice.getDevice(deviceIds[i]).getSources() & InputDevice.SOURCE_CLASS_JOYSTICK) != 0) {
mJoyIdList.add(deviceIds[i]);
mJoyIdList.add(Integer.valueOf(deviceIds[i]));
}
}
}
@ -860,13 +860,13 @@ class SDLJoystickHandler_API12 extends SDLJoystickHandler {
@Override
public String getJoystickName(int joy) {
createJoystickList();
return InputDevice.getDevice(mJoyIdList.get(joy)).getName();
return InputDevice.getDevice(mJoyIdList.get(joy).intValue()).getName();
}
@Override
public int getJoystickAxes(int joy) {
createJoystickList();
return InputDevice.getDevice(mJoyIdList.get(joy)).getMotionRanges().size();
return InputDevice.getDevice(mJoyIdList.get(joy).intValue()).getMotionRanges().size();
}
@Override
@ -876,7 +876,7 @@ class SDLJoystickHandler_API12 extends SDLJoystickHandler {
createJoystickList();
for(i=0; i<mJoyIdList.size(); i++) {
if(mJoyIdList.get(i) == devId) {
if(mJoyIdList.get(i).intValue() == devId) {
return i;
}
}