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:
parent
f028f5530c
commit
4c5d157262
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue