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()")