mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 17:26:01 +02:00
Updated fix for Bug243899
This commit is contained in:
parent
003975782e
commit
4030994b38
1 changed files with 2 additions and 1 deletions
|
@ -1284,7 +1284,8 @@ public class MIBreakpointsManager extends AbstractDsfService implements IBreakpo
|
|||
private void terminated() {
|
||||
// Reset the breakpoint install count
|
||||
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();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue