From eac27bcd2fd505fe7169ebbee3433e13f2d50ab9 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Thu, 29 May 2014 22:58:06 +0200 Subject: [PATCH] Added javadoc comments to prevent unused parameter warning. --- android-project/src/org/libsdl/app/SDLActivity.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/android-project/src/org/libsdl/app/SDLActivity.java b/android-project/src/org/libsdl/app/SDLActivity.java index e6fb5f5b7..6056cde6f 100644 --- a/android-project/src/org/libsdl/app/SDLActivity.java +++ b/android-project/src/org/libsdl/app/SDLActivity.java @@ -937,10 +937,18 @@ class SDLInputConnection extends BaseInputConnection { /* 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() { } }