Replaced implicit boxing with explicit boxing in Java file.
This commit is contained in:
parent
48e7bb9b10
commit
b081847e58
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue