We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b025865 commit cabc8aeCopy full SHA for cabc8ae
2 files changed
.gitignore
@@ -1,5 +1,6 @@
1
.idea/
2
.gradle/
3
+.kotlin/
4
out/
5
build/
6
*.iml
kstatemachine/src/commonMain/kotlin/ru/nsk/kstatemachine/state/BaseStateImpl.kt
@@ -182,7 +182,7 @@ open class BaseStateImpl(
182
.ifEmpty { listOfNotNull(findUniqueResolvedTransition(eventAndArgument)) } // allow transition override
183
return if (!machine.creationArguments.doNotThrowOnMultipleTransitionsMatch) {
184
check(resolvedTransitions.size <= 1) {
185
- "Multiple transitions match ${eventAndArgument.event}, $transitions in $this"
+ "Multiple transitions match ${eventAndArgument.event}, $resolvedTransitions in $this"
186
}
187
resolvedTransitions.singleOrNull()
188
} else {
0 commit comments