From 33b1813dd72150087989d8f203409cc1f36268ca Mon Sep 17 00:00:00 2001 From: Natalia Ukhorskaya Date: Tue, 1 Apr 2014 11:12:23 +0400 Subject: [PATCH] Remove KT-4617 workaround --- .../jet/plugin/debugger/AbstractKotlinSteppingTest.kt | 7 ------- 1 file changed, 7 deletions(-) diff --git a/idea/tests/org/jetbrains/jet/plugin/debugger/AbstractKotlinSteppingTest.kt b/idea/tests/org/jetbrains/jet/plugin/debugger/AbstractKotlinSteppingTest.kt index d5c7370f76a..79e6c08dfcf 100644 --- a/idea/tests/org/jetbrains/jet/plugin/debugger/AbstractKotlinSteppingTest.kt +++ b/idea/tests/org/jetbrains/jet/plugin/debugger/AbstractKotlinSteppingTest.kt @@ -46,13 +46,6 @@ abstract class AbstractKotlinSteppingTest : KotlinDebuggerTestCase() { finish() } - // Workaround for KT-4617 - Start - override fun resume(context: SuspendContextImpl?) = super.resume(context) - override fun printContext(context: StackFrameContext?) = super.printContext(context) - override fun printFrameProxy(frameProxy: StackFrameProxyImpl?) = super.printFrameProxy(frameProxy) - override fun getDebugProcess() = super.getDebugProcess() - // Workaround for KT-4617 - End - private val dp: DebugProcessImpl get() = getDebugProcess() ?: throw AssertionError("createLocalProcess() should be called before getDebugProcess()")