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 efd83e0 commit 02e20d1Copy full SHA for 02e20d1
mini-runtime/src/main/java/mini/MiniRuntime.kt
@@ -16,7 +16,7 @@ object MiniRuntime : MiniInitializer {
16
if (fn.parameters.size != 2) { //param 0 is `this`
17
throw IllegalArgumentException("Function should have 1 argument for action")
18
}
19
- val actionType = fn.parameters[0].type.jvmErasure
+ val actionType = fn.parameters[1].type.jvmErasure
20
val priority = annotation!!.priority
21
dispatcher.register(clazz = actionType, priority = priority, callback = {
22
fn.call(store, it)
0 commit comments