1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +02:00

check for cli "run"

This commit is contained in:
Alain Magloire 2003-02-09 22:19:07 +00:00
parent c064eb333a
commit daf107888c

View file

@ -81,6 +81,8 @@ public class CLIProcessor {
type = MIRunningEvent.CONTINUE;
} else if (operation.startsWith("j") && "jump".indexOf(operation) != -1) {
type = MIRunningEvent.CONTINUE;
} else if (operation.equals("r") || operation.equals("run")) {
type = MIRunningEvent.CONTINUE;
}
return type;
}