Refactoring: stop calling deprecated method
(cherry picked from commit 083656c)
This commit is contained in:
committed by
Nikolay Krasko
parent
11f8c904c4
commit
c7ba19696a
+3
-3
@@ -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)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user