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

[221728] Fixed an assertion error in BreakpiontsMediator.

This commit is contained in:
Pawel Piech 2008-03-06 20:04:34 +00:00
parent 2e76289006
commit 43aab414a9

View file

@ -311,7 +311,7 @@ public class BreakpointsMediator extends AbstractDsfService implements IBreakpoi
// Install the individual breakpoints on the executor thread
// Requires a counting monitor to know when we're done
final CountingRequestMonitor countingRm = new CountingRequestMonitor(getExecutor(), rm);
countingRm.setDoneCount(platformBPs.size());
countingRm.setDoneCount(initialPlatformBPs.size());
for (final IBreakpoint bp : initialPlatformBPs.keySet()) {
final List<Map<String, Object>> attrs = initialPlatformBPs.get(bp);