blob: 893989de38c3ca347b97c91d00c167ba9e881c5e [file] [log] [blame]
package com.jetbrains.python.debugger.pydev;
import org.jetbrains.annotations.NotNull;
public class RemoveBreakpointCommand extends LineBreakpointCommand {
public RemoveBreakpointCommand(final RemoteDebugger debugger, @NotNull final String type, final String file, final int line) {
super(debugger, type, REMOVE_BREAKPOINT, file, line);
}
}