blob: 4e58c452592f2a45c073a61fef562cfc4714cb58 [file] [log] [blame]
package com.jetbrains.python.debugger.pydev;
/**
* @author traff
*/
public class SuspendCommand extends AbstractThreadCommand {
protected SuspendCommand(final RemoteDebugger debugger, final String threadId) {
super(debugger, SUSPEND_THREAD, threadId);
}
}