Skip to content

Commit

Permalink
exitActions instead of exitAction
Browse files Browse the repository at this point in the history
  • Loading branch information
miho committed Feb 23, 2023
1 parent b63792d commit 1cc71c2
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,6 @@ private void performStateTransition(Event evt, State oldState, State newState, T
var entryActions = s.getOnEntryActions();
for(var entryAction : entryActions) {
if (entryAction != null) {

try {
fsmLock.unlock();
CompletableFuture.runAsync(() -> {
Expand All @@ -714,7 +713,6 @@ private void performStateTransition(Event evt, State oldState, State newState, T
}
}
if (!((FSMExecutor)s.getOwningFSM().getExecutor()).executeDoActionOfNewState(evt, oldS, s)) return;
// if (!executeDoActionOfNewState(evt, s, newState)) return;

// enter children states
if(enterAndExit && s instanceof FSMState) {
Expand Down

0 comments on commit 1cc71c2

Please sign in to comment.