From cdd44058d829b755bec672ab7cd9cfcfd3252c00 Mon Sep 17 00:00:00 2001 From: "nor..67" Date: Sat, 2 Apr 2011 20:50:00 +0000 Subject: [PATCH] - remove isActive from AppState interface git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7161 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- .../src/core/com/jme3/app/state/AppState.java | 20 ------------------- 1 file changed, 20 deletions(-) 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