Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions jme3-core/src/main/java/com/jme3/app/state/BaseAppState.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
* management convenience than AbstractAppState, including methods
* for enable/disable/initialize state management.
* The abstract onEnable() and onDisable() methods are called
* appropriately during initialize(), terminate(), or setEnabled()
* appropriately during initialize(), cleanup(), or setEnabled()
* depending on the mutual state of "initialized" and "enabled".
*
* <p>initialize() and terminate() can be used by subclasses to
* <p>initialize() and cleanup() can be used by subclasses to
* manage resources that should exist the entire time that the
* app state is attached. This is useful for resources that might
* be expensive to create or load.</p>
Expand Down