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

[240997] - Fix attempt #3.

This commit is contained in:
Pawel Piech 2008-07-15 21:53:15 +00:00
parent f028f5530c
commit 4c5d157262

View file

@ -641,8 +641,9 @@ public class MIStack extends AbstractDsfService
@DsfServiceEventHandler
public void eventDispatched(IMIDMEvent e) {
if (e.getMIEvent() instanceof MIStoppedEvent) {
fCachedStoppedEvent = (MIStoppedEvent)e.getMIEvent();
Object miEvent = e.getMIEvent();
if (miEvent instanceof MIStoppedEvent) {
fCachedStoppedEvent = (MIStoppedEvent)miEvent;
}
}