=act #18364 fix AbstractFSM#onTransition infinite recursion
This commit is contained in:
parent
9d3eea3287
commit
6c036ea8a7
1 changed files with 1 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ abstract class AbstractFSM[S, D] extends FSM[S, D] {
|
|||
* called, not only the first one matching.</b>
|
||||
*/
|
||||
final def onTransition(transitionHandler: UnitApply2[S, S]): Unit =
|
||||
onTransition(transitionHandler)
|
||||
onTransition(transitionHandler(_: S, _: S))
|
||||
|
||||
/**
|
||||
* Set handler which is called upon reception of unhandled messages. Calling
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue