Added javadoc comments to prevent unused parameter warning.
This commit is contained in:
parent
4efae3ae35
commit
272e4b090a
1 changed files with 9 additions and 1 deletions
|
@ -937,10 +937,18 @@ class SDLInputConnection extends BaseInputConnection {
|
||||||
/* A null joystick handler for API level < 12 devices (the accelerometer is handled separately) */
|
/* A null joystick handler for API level < 12 devices (the accelerometer is handled separately) */
|
||||||
class SDLJoystickHandler {
|
class SDLJoystickHandler {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles given MotionEvent.
|
||||||
|
* @param event the event to be handled.
|
||||||
|
* @return if given event was processed.
|
||||||
|
*/
|
||||||
public boolean handleMotionEvent(MotionEvent event) {
|
public boolean handleMotionEvent(MotionEvent event) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles adding and removing of input devices.
|
||||||
|
*/
|
||||||
public void pollInputDevices() {
|
public void pollInputDevices() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue