mirror of
https://github.com/angryip/ipscan.git
synced 2025-10-26 11:18:17 +00:00
remove useless javadoc
This commit is contained in:
parent
53de38674f
commit
a6fcb2bf36
@ -28,7 +28,6 @@ public abstract class StateMachine {
|
||||
private List<StateTransitionListener> transitionListeners = new ArrayList<StateTransitionListener>();
|
||||
|
||||
/**
|
||||
* @param state
|
||||
* @return true if current state is as specified
|
||||
*/
|
||||
public boolean inState(ScanningState state) {
|
||||
@ -44,7 +43,6 @@ public abstract class StateMachine {
|
||||
|
||||
/**
|
||||
* Registers state transition listener.
|
||||
* @param listener instance
|
||||
*/
|
||||
public void addTransitionListener(StateTransitionListener listener) {
|
||||
try {
|
||||
@ -58,7 +56,6 @@ public abstract class StateMachine {
|
||||
|
||||
/**
|
||||
* Unregisters the listener
|
||||
* @param killHandler
|
||||
*/
|
||||
public void removeTransitionListener(StateTransitionListener listener) {
|
||||
try {
|
||||
@ -73,7 +70,6 @@ public abstract class StateMachine {
|
||||
/**
|
||||
* Transitions to the specified state, notifying all listeners.
|
||||
* Note: this method is intentionally not public, use specific methods to make desired transitions.
|
||||
* @param newState
|
||||
*/
|
||||
void transitionTo(ScanningState newState, Transition transition) {
|
||||
if (state != newState) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user