better inheritance 2

develop
Vyacheslav Boyko 2022-07-11 15:15:58 +03:00
parent 73255b86d5
commit 58e9bf0639
1 changed files with 2 additions and 2 deletions

View File

@ -107,8 +107,8 @@ public class Fsm<T extends Fsm, E> {
protected State<E> initialState;
protected State<E> currentState;
protected State<E> previousState;
private final Map<String, State<E>> states = new HashMap<>();
private final Map<String, Map<String, Condition<T, E>>> transitions = new HashMap<>();
protected final Map<String, State<E>> states = new HashMap<>();
protected final Map<String, Map<String, Condition<T, E>>> transitions = new HashMap<>();
/**
* Initiate a builder