diff --git a/idea/src/org/jetbrains/jet/plugin/debugger/KotlinSmartStepIntoHandler.kt b/idea/src/org/jetbrains/jet/plugin/debugger/KotlinSmartStepIntoHandler.kt index 893285f977d..4d9cbeb30bd 100644 --- a/idea/src/org/jetbrains/jet/plugin/debugger/KotlinSmartStepIntoHandler.kt +++ b/idea/src/org/jetbrains/jet/plugin/debugger/KotlinSmartStepIntoHandler.kt @@ -166,9 +166,7 @@ public class KotlinSmartStepIntoHandler : JvmSmartStepIntoHandler() { if (function is JetNamedFunction) { val psiMethod = LightClassUtil.getLightClassMethod(function) if (psiMethod != null) { - result.add(MethodSmartStepTarget(method = psiMethod, label = null, - highlightElement = expression, - needBreakpointRequest = false, lines = lines)) + result.add(MethodSmartStepTarget(psiMethod, null, expression, false, lines)) } } }