Refactoring: stop calling deprecated method

(cherry picked from commit 083656c)
This commit is contained in:
Nikolay Krasko
2016-10-10 21:03:18 +03:00
committed by Nikolay Krasko
parent 11f8c904c4
commit c7ba19696a
@@ -334,10 +334,10 @@ sealed class Action(val position: XSourcePositionImpl?) {
is Action.RUN_TO_CURSOR -> {
runReadAction {
debugProcess.createRunToCursorCommand(suspendContext, position!!, ignoreBreakpoints)
}.contextAction()
}.contextAction(suspendContext)
}
is Action.STEP_OUT -> debugProcess.createStepOutCommand(suspendContext).contextAction()
is Action.STEP_OVER -> debugProcess.createStepOverCommand(suspendContext, ignoreBreakpoints).contextAction()
is Action.STEP_OUT -> debugProcess.createStepOutCommand(suspendContext).contextAction(suspendContext)
is Action.STEP_OVER -> debugProcess.createStepOverCommand(suspendContext, ignoreBreakpoints).contextAction(suspendContext)
}
}
}