mwtidd
29-02-2012, 07:00
Not really sure how I let this one sneak in.
public abstract class NeverEndingCommand extends Command{
protected void interrupted() {
//override for pids
}
protected boolean isFinished(){
return true;
}
protected void end(){
//never called
}
}
public abstract class NeverEndingCommand extends Command{
protected void interrupted() {
//override for pids
}
protected boolean isFinished(){
return true;
}
protected void end(){
//never called
}
}