Fix compilation

This commit is contained in:
Natalia Ukhorskaya
2014-03-21 17:21:42 +04:00
parent e8d2ba197e
commit fdef0b03fe
@@ -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))
}
}
}