blob: 37313ab86b8d50b3e7d5763e31f30fc3c3e52585 [file] [log] [blame]
package com.jetbrains.python.debugger.pydev;
public class RunCommand extends AbstractCommand {
public RunCommand(final RemoteDebugger debugger) {
super(debugger, RUN);
}
@Override
protected void buildPayload(Payload payload) {
}
}