blob: 4aec732fc4c42a264cef4e51ebed9bcac126b344 [file] [log] [blame]
package org.eclipse.ptp.proxy.debug.command;
public class ProxyDebugGoCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugGoCommand(String bits) {
super(GO, bits);
}
public ProxyDebugGoCommand(int transID, String[] args) {
super(GO, transID, args);
}
}