mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
[228703] Need to clear the containerContext from the breakpointHitMap if it exists.
This commit is contained in:
parent
d72885258c
commit
69c742577b
1 changed files with 2 additions and 1 deletions
|
@ -1184,7 +1184,7 @@ public class MIBreakpoints extends AbstractDsfService implements IBreakpoints, I
|
|||
@DsfServiceEventHandler
|
||||
public void eventDispatched(IResumedDMEvent e) {
|
||||
if (e instanceof IContainerResumedDMEvent) {
|
||||
clearBreakpointHitForContainer((IContainerDMContext)((IContainerResumedDMEvent)e).getDMContext());
|
||||
clearBreakpointHitForContainer((IContainerDMContext)e.getDMContext());
|
||||
} else {
|
||||
fBreakpointHitMap.remove(e.getDMContext());
|
||||
}
|
||||
|
@ -1210,6 +1210,7 @@ public class MIBreakpoints extends AbstractDsfService implements IBreakpoints, I
|
|||
itr.remove();
|
||||
}
|
||||
}
|
||||
fBreakpointHitMap.remove(container);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue