Skip to content

Commit

Permalink
Removed not needed imports from Java file.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Nov 10, 2013
1 parent d6c1e38 commit 802f83f
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions android-project/src/org/libsdl/app/SDLActivity.java
@@ -1,5 +1,6 @@
package org.libsdl.app;

import java.util.ArrayList;
import java.util.Arrays;

import android.app.*;
Expand All @@ -16,10 +17,6 @@
import android.media.*;
import android.hardware.*;

import java.lang.*;
import java.util.List;
import java.util.ArrayList;


/**
SDL Activity
Expand Down Expand Up @@ -836,7 +833,7 @@ public int getJoyId(int devId) {

/* 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() {
Expand Down

0 comments on commit 802f83f

Please sign in to comment.