Merge branch 'release/2.1.5'
This commit is contained in:
commit
f3870d5c50
2
pom.xml
2
pom.xml
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<groupId>me.bvn13.fsm</groupId>
|
<groupId>me.bvn13.fsm</groupId>
|
||||||
<artifactId>fsm</artifactId>
|
<artifactId>fsm</artifactId>
|
||||||
<version>2.1.4</version>
|
<version>2.1.5</version>
|
||||||
|
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
@ -103,10 +103,10 @@ import java.util.function.Supplier;
|
|||||||
*/
|
*/
|
||||||
public class Fsm<T extends Fsm, E> {
|
public class Fsm<T extends Fsm, E> {
|
||||||
|
|
||||||
private boolean done = false;
|
protected boolean done = false;
|
||||||
private State<E> initialState;
|
protected State<E> initialState;
|
||||||
private State<E> currentState;
|
protected State<E> currentState;
|
||||||
private State<E> previousState;
|
protected State<E> previousState;
|
||||||
private final Map<String, State<E>> states = new HashMap<>();
|
private final Map<String, State<E>> states = new HashMap<>();
|
||||||
private final Map<String, Map<String, Condition<T, E>>> transitions = new HashMap<>();
|
private final Map<String, Map<String, Condition<T, E>>> transitions = new HashMap<>();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user