Remove KT-4617 workaround

This commit is contained in:
Natalia Ukhorskaya
2014-04-01 11:12:23 +04:00
parent 32a6205d81
commit 33b1813dd7
@@ -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()")