This commit is contained in:
Janne Valkealahti
2020-10-18 09:16:19 +01:00
parent e47221056b
commit ca615c8237

View File

@@ -96,6 +96,7 @@ public class StateMachineInterceptorList<S, E> {
* @param stateMachine the state machine
* @param rootStateMachine the root state machine
*/
@SuppressWarnings({ "deprecation" })
public void preStateChange(State<S, E> state, Message<E> message, Transition<S, E> transition,
StateMachine<S, E> stateMachine, StateMachine<S, E> rootStateMachine) {
for (StateMachineInterceptor<S, E> interceptor : interceptors) {
@@ -113,7 +114,7 @@ public class StateMachineInterceptorList<S, E> {
* @param stateMachine the state machine
* @param rootStateMachine the root state machine
*/
@SuppressWarnings({ "deprecation" })
public void postStateChange(State<S, E> state, Message<E> message, Transition<S, E> transition,
StateMachine<S, E> stateMachine, StateMachine<S, E> rootStateMachine) {
for (StateMachineInterceptor<S, E> interceptor : interceptors) {