Various warning-related cleanups. Added @Overrides

and removed some manual unboxing.
cleanup_build_scripts
Paul Speed 9 years ago
parent 3189323c2f
commit b006204c0f
  1. 15
      jme3-core/src/main/java/com/jme3/input/InputManager.java

@ -287,12 +287,14 @@ public class InputManager implements RawInputListener {
/** /**
* Callback from RawInputListener. Do not use. * Callback from RawInputListener. Do not use.
*/ */
@Override
public void beginInput() { public void beginInput() {
} }
/** /**
* Callback from RawInputListener. Do not use. * Callback from RawInputListener. Do not use.
*/ */
@Override
public void endInput() { public void endInput() {
} }
@ -312,10 +314,10 @@ public class InputManager implements RawInputListener {
Float val1 = axisValues.get(hash1); Float val1 = axisValues.get(hash1);
Float val2 = axisValues.get(hash2); Float val2 = axisValues.get(hash2);
if (val1 != null && val1.floatValue() > effectiveDeadZone) { if (val1 != null && val1 > effectiveDeadZone) {
invokeActions(hash1, false); invokeActions(hash1, false);
} }
if (val2 != null && val2.floatValue() > effectiveDeadZone) { if (val2 != null && val2 > effectiveDeadZone) {
invokeActions(hash2, false); invokeActions(hash2, false);
} }
@ -329,7 +331,7 @@ public class InputManager implements RawInputListener {
// Clear the reverse direction's actions in case we // Clear the reverse direction's actions in case we
// crossed center too quickly // crossed center too quickly
Float otherVal = axisValues.get(otherHash); Float otherVal = axisValues.get(otherHash);
if (otherVal != null && otherVal.floatValue() > effectiveDeadZone) { if (otherVal != null && otherVal > effectiveDeadZone) {
invokeActions(otherHash, false); invokeActions(otherHash, false);
} }
@ -343,7 +345,7 @@ public class InputManager implements RawInputListener {
// Clear the reverse direction's actions in case we // Clear the reverse direction's actions in case we
// crossed center too quickly // crossed center too quickly
Float otherVal = axisValues.get(otherHash); Float otherVal = axisValues.get(otherHash);
if (otherVal != null && otherVal.floatValue() > effectiveDeadZone) { if (otherVal != null && otherVal > effectiveDeadZone) {
invokeActions(otherHash, false); invokeActions(otherHash, false);
} }
@ -356,6 +358,7 @@ public class InputManager implements RawInputListener {
/** /**
* Callback from RawInputListener. Do not use. * Callback from RawInputListener. Do not use.
*/ */
@Override
public void onJoyAxisEvent(JoyAxisEvent evt) { public void onJoyAxisEvent(JoyAxisEvent evt) {
if (!eventsPermitted) { if (!eventsPermitted) {
throw new UnsupportedOperationException("JoyInput has raised an event at an illegal time."); throw new UnsupportedOperationException("JoyInput has raised an event at an illegal time.");
@ -377,6 +380,7 @@ public class InputManager implements RawInputListener {
/** /**
* Callback from RawInputListener. Do not use. * Callback from RawInputListener. Do not use.
*/ */
@Override
public void onJoyButtonEvent(JoyButtonEvent evt) { public void onJoyButtonEvent(JoyButtonEvent evt) {
if (!eventsPermitted) { if (!eventsPermitted) {
throw new UnsupportedOperationException("JoyInput has raised an event at an illegal time."); throw new UnsupportedOperationException("JoyInput has raised an event at an illegal time.");
@ -420,6 +424,7 @@ public class InputManager implements RawInputListener {
/** /**
* Callback from RawInputListener. Do not use. * Callback from RawInputListener. Do not use.
*/ */
@Override
public void onMouseMotionEvent(MouseMotionEvent evt) { public void onMouseMotionEvent(MouseMotionEvent evt) {
if (!eventsPermitted) { if (!eventsPermitted) {
throw new UnsupportedOperationException("MouseInput has raised an event at an illegal time."); throw new UnsupportedOperationException("MouseInput has raised an event at an illegal time.");
@ -438,6 +443,7 @@ public class InputManager implements RawInputListener {
/** /**
* Callback from RawInputListener. Do not use. * Callback from RawInputListener. Do not use.
*/ */
@Override
public void onMouseButtonEvent(MouseButtonEvent evt) { public void onMouseButtonEvent(MouseButtonEvent evt) {
if (!eventsPermitted) { if (!eventsPermitted) {
throw new UnsupportedOperationException("MouseInput has raised an event at an illegal time."); throw new UnsupportedOperationException("MouseInput has raised an event at an illegal time.");
@ -460,6 +466,7 @@ public class InputManager implements RawInputListener {
/** /**
* Callback from RawInputListener. Do not use. * Callback from RawInputListener. Do not use.
*/ */
@Override
public void onKeyEvent(KeyInputEvent evt) { public void onKeyEvent(KeyInputEvent evt) {
if (!eventsPermitted) { if (!eventsPermitted) {
throw new UnsupportedOperationException("KeyInput has raised an event at an illegal time."); throw new UnsupportedOperationException("KeyInput has raised an event at an illegal time.");

Loading…
Cancel
Save