Skip to content

Commit

Permalink
Added javadoc comments to prevent unused parameter warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed May 29, 2014
1 parent 1f111f3 commit eac27bc
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion android-project/src/org/libsdl/app/SDLActivity.java
Expand Up @@ -937,10 +937,18 @@ public boolean deleteSurroundingText(int beforeLength, int afterLength) {
/* A null joystick handler for API level < 12 devices (the accelerometer is handled separately) */
class SDLJoystickHandler {

/**
* Handles given MotionEvent.
* @param event the event to be handled.
* @return if given event was processed.
*/
public boolean handleMotionEvent(MotionEvent event) {
return false;
}


/**
* Handles adding and removing of input devices.
*/
public void pollInputDevices() {
}
}
Expand Down

0 comments on commit eac27bc

Please sign in to comment.