1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Remove useless assignement.

This commit is contained in:
Alain Magloire 2003-01-07 17:12:01 +00:00
parent 4f9fafb5cd
commit a9c1020705
2 changed files with 0 additions and 2 deletions

View file

@ -70,7 +70,6 @@ public class MIInferior extends Process {
public void flush() throws IOException { public void flush() throws IOException {
CLICommand cmd = new CLICommand(buf.toString()) { CLICommand cmd = new CLICommand(buf.toString()) {
public void setToken(int token) { public void setToken(int token) {
token = token;
// override to do nothing; // override to do nothing;
} }
}; };

View file

@ -44,7 +44,6 @@ public class EventManager extends SessionObject implements ICDIEventManager, Obs
List cdiList = new ArrayList(1); List cdiList = new ArrayList(1);
if (ignoreEventToken(miEvent.getToken())) { if (ignoreEventToken(miEvent.getToken())) {
miEvent = miEvent;
// Ignore the event if it is on the ignore list. // Ignore the event if it is on the ignore list.
} else if (miEvent instanceof MIStoppedEvent) { } else if (miEvent instanceof MIStoppedEvent) {
processSuspendedEvent((MIStoppedEvent)miEvent); processSuspendedEvent((MIStoppedEvent)miEvent);