mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-20 13:31:28 +07:00
IDEA-363183 Kotlin Debugger: CCE on creating map during evaluation
GitOrigin-RevId: 65d4660706f3808c8de92e6944fe58b57617e665
This commit is contained in:
committed by
intellij-monorepo-bot
parent
0d3637c28f
commit
9912aee5c9
@@ -213,7 +213,7 @@ public final class MethodInvoker {
|
||||
result = method.invokeWithArguments(args);
|
||||
}
|
||||
else {
|
||||
result = method.invoke(args);
|
||||
result = method.asFixedArity().invoke(args);
|
||||
}
|
||||
returnValue.set(result);
|
||||
return result;
|
||||
|
||||
Reference in New Issue
Block a user