mirror of https://github.com/encounter/SDL.git
Removed not needed imports from Java file.
This commit is contained in:
parent
d6c1e3812e
commit
802f83ff99
|
@ -1,5 +1,6 @@
|
|||
package org.libsdl.app;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
|
||||
import android.app.*;
|
||||
|
@ -16,10 +17,6 @@ import android.graphics.*;
|
|||
import android.media.*;
|
||||
import android.hardware.*;
|
||||
|
||||
import java.lang.*;
|
||||
import java.util.List;
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
||||
/**
|
||||
SDL Activity
|
||||
|
@ -836,7 +833,7 @@ class SDLJoystickHandler {
|
|||
|
||||
/* Actual joystick functionality available for API >= 12 devices */
|
||||
class SDLJoystickHandler_API12 extends SDLJoystickHandler {
|
||||
private List<Integer> mJoyIdList;
|
||||
private ArrayList<Integer> mJoyIdList;
|
||||
|
||||
// Create a list of valid ID's the first time this function is called
|
||||
private void createJoystickList() {
|
||||
|
|
Loading…
Reference in New Issue