You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.
Let the user of the API define a name and directly return the new state machine.
This allows us to remove the custom type IdMap and hence simplifies the code.
Before: val stateMachine = GuiStateMachineApi().createStateMachine()
After: val stateMachine = GuiStateMachineApi().createStateMachine("test")
The text was updated successfully, but these errors were encountered:
Let the user of the API define a name and directly return the new state machine.
This allows us to remove the custom type
IdMap
and hence simplifies the code.Before:
val stateMachine = GuiStateMachineApi().createStateMachine()
After:
val stateMachine = GuiStateMachineApi().createStateMachine("test")
The text was updated successfully, but these errors were encountered: