Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 243899 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/cdt/dsf/mi/service/MIBreakpointsManager.java (-1 / +2 lines)
Lines 1284-1290 Link Here
1284
    private void terminated() {
1284
    private void terminated() {
1285
    	// Reset the breakpoint install count
1285
    	// Reset the breakpoint install count
1286
    	for (IBreakpointsTargetDMContext ctx : fPlatformBPs.keySet()) {
1286
    	for (IBreakpointsTargetDMContext ctx : fPlatformBPs.keySet()) {
1287
            clearBreakpointStatus(fPlatformBPs.get(ctx).keySet().toArray(new ICBreakpoint[fPlatformBPs.size()]));
1287
    		Map<ICBreakpoint, Map<String, Object>> breakpoints = fPlatformBPs.get(ctx);
1288
            clearBreakpointStatus(breakpoints.keySet().toArray(new ICBreakpoint[breakpoints.size()]));
1288
    	}
1289
    	}
1289
        fPlatformBPs.clear();
1290
        fPlatformBPs.clear();
1290
    }
1291
    }

Return to bug 243899