diff --git a/java/debugger/impl/src/com/intellij/debugger/engine/DebugProcessImpl.java b/java/debugger/impl/src/com/intellij/debugger/engine/DebugProcessImpl.java index 48110d4851da..d7cfce43e674 100644 --- a/java/debugger/impl/src/com/intellij/debugger/engine/DebugProcessImpl.java +++ b/java/debugger/impl/src/com/intellij/debugger/engine/DebugProcessImpl.java @@ -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