diff --git a/engine/src/core/com/jme3/app/state/AppState.java b/engine/src/core/com/jme3/app/state/AppState.java index 77450b1a0..d94a35f6f 100644 --- a/engine/src/core/com/jme3/app/state/AppState.java +++ b/engine/src/core/com/jme3/app/state/AppState.java @@ -63,26 +63,6 @@ public interface AppState { */ public boolean isInitialized(); - /** - * Use setEnabled() instead. - * Activate or deactivate the functionality of the AppState. - * The effect of this call depends on implementation. An - * AppState starts as being active by default. - * - * @param active activate the AppState or not. - */ - @Deprecated - public void setActive(boolean active); - - /** - * Use isEnabled() instead. - * @return True if the AppState is active, false otherwise. - * - * @see AppState#setActive(boolean) - */ - @Deprecated - public boolean isActive(); - /** * Enable or disable the functionality of the AppState. * The effect of this call depends on implementation. An