[debugger] IDEA-361675 Fix API compatibility DebugProcessImpl.StepOutCommand

(cherry picked from commit 68fa7e7f7f5e2b21f28fbcc32ccfe6b416b89a62)

IJ-CR-148037

GitOrigin-RevId: 7b5bf721f9871eb06a0492262cfc4b74e93a950c
This commit is contained in:
Maksim Zuev
2024-11-18 19:16:28 +00:00
committed by intellij-monorepo-bot
parent 6f2cd64d5e
commit a2dbe7a527
@@ -1935,6 +1935,10 @@ public abstract class DebugProcessImpl extends UserDataHolderBase implements Deb
public class StepOutCommand extends StepCommand {
private final int myStepSize;
public StepOutCommand(SuspendContextImpl suspendContext, int stepSize) {
this(suspendContext, stepSize, null);
}
public StepOutCommand(SuspendContextImpl suspendContext, int stepSize, @Nullable MethodFilter filter) {
super(suspendContext, filter);
myStepSize = stepSize;
@@ -2770,7 +2774,7 @@ public abstract class DebugProcessImpl extends UserDataHolderBase implements Deb
@NotNull
public ResumeCommand createStepOutCommand(SuspendContextImpl suspendContext, int stepSize) {
return new StepOutCommand(suspendContext, stepSize, null);
return new StepOutCommand(suspendContext, stepSize);
}
@NotNull