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

[219841] Added TODO comments regarding this bug.

This commit is contained in:
Pawel Piech 2008-02-22 00:29:18 +00:00
parent 6cd8e646a4
commit 0b291f4f12

View file

@ -427,6 +427,9 @@ public class BreakpointsMediator extends AbstractDsfService implements IBreakpoi
list = new LinkedList<IBreakpointDMContext>();
list.add(getData());
breakpointIDs.put(breakpoint, list);
} else {
// TODO (bug 219841): need to add breakpoint error status tracking
// in addition to fBreakpointDMContexts.
}
installRM.done();
}
@ -628,13 +631,18 @@ public class BreakpointsMediator extends AbstractDsfService implements IBreakpoi
oldBpContexts.get(i),
new RequestMonitor(getExecutor(), countingRM) {
@Override
protected void handleOK() {
protected void handleCompleted() {
fBreakpoints.insertBreakpoint(
context, attrs,
new DataRequestMonitor<IBreakpointDMContext>(getExecutor(), countingRM) {
@Override
protected void handleOK() {
newBpContexts.add(getData());
protected void handleCompleted() {
if (getStatus().isOK()) {
newBpContexts.add(getData());
} else {
// TODO (bug 219841): need to add breakpoint error status tracking
// in addition to fBreakpointDMContexts.
}
countingRM.done();
}
});