1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Updated fix for Bug243899

This commit is contained in:
Francois Chouinard 2009-01-29 15:39:54 +00:00
parent 003975782e
commit 4030994b38

View file

@ -1284,7 +1284,8 @@ public class MIBreakpointsManager extends AbstractDsfService implements IBreakpo
private void terminated() { private void terminated() {
// Reset the breakpoint install count // Reset the breakpoint install count
for (IBreakpointsTargetDMContext ctx : fPlatformBPs.keySet()) { for (IBreakpointsTargetDMContext ctx : fPlatformBPs.keySet()) {
clearBreakpointStatus(fPlatformBPs.get(ctx).keySet().toArray(new ICBreakpoint[fPlatformBPs.size()])); Map<ICBreakpoint, Map<String, Object>> breakpoints = fPlatformBPs.get(ctx);
clearBreakpointStatus(breakpoints.keySet().toArray(new ICBreakpoint[breakpoints.size()]));
} }
fPlatformBPs.clear(); fPlatformBPs.clear();
} }