blob: 9bfeced4d3df687f0e08c34f96e1423da7dd119a [file] [log] [blame]
package org.apache.ant.debugger;
import org.apache.tools.ant.Project;
/**
* Used to implement commands that should not be handled by {@link DebugSupport}
* at all. Example, the 'return' command
*/
public final class NoOp implements DebugSupport {
public boolean commandSupported(String command) {
return "return".equalsIgnoreCase(command);
}
public void execute(Project project, String[] params) {
// do nothing
}
public void printUsage(Project project) {
};
}