mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-31 21:05:37 +02:00
[219841] Added TODO comments regarding this bug.
This commit is contained in:
parent
6cd8e646a4
commit
0b291f4f12
1 changed files with 11 additions and 3 deletions
|
@ -427,6 +427,9 @@ public class BreakpointsMediator extends AbstractDsfService implements IBreakpoi
|
||||||
list = new LinkedList<IBreakpointDMContext>();
|
list = new LinkedList<IBreakpointDMContext>();
|
||||||
list.add(getData());
|
list.add(getData());
|
||||||
breakpointIDs.put(breakpoint, list);
|
breakpointIDs.put(breakpoint, list);
|
||||||
|
} else {
|
||||||
|
// TODO (bug 219841): need to add breakpoint error status tracking
|
||||||
|
// in addition to fBreakpointDMContexts.
|
||||||
}
|
}
|
||||||
installRM.done();
|
installRM.done();
|
||||||
}
|
}
|
||||||
|
@ -628,13 +631,18 @@ public class BreakpointsMediator extends AbstractDsfService implements IBreakpoi
|
||||||
oldBpContexts.get(i),
|
oldBpContexts.get(i),
|
||||||
new RequestMonitor(getExecutor(), countingRM) {
|
new RequestMonitor(getExecutor(), countingRM) {
|
||||||
@Override
|
@Override
|
||||||
protected void handleOK() {
|
protected void handleCompleted() {
|
||||||
fBreakpoints.insertBreakpoint(
|
fBreakpoints.insertBreakpoint(
|
||||||
context, attrs,
|
context, attrs,
|
||||||
new DataRequestMonitor<IBreakpointDMContext>(getExecutor(), countingRM) {
|
new DataRequestMonitor<IBreakpointDMContext>(getExecutor(), countingRM) {
|
||||||
@Override
|
@Override
|
||||||
protected void handleOK() {
|
protected void handleCompleted() {
|
||||||
newBpContexts.add(getData());
|
if (getStatus().isOK()) {
|
||||||
|
newBpContexts.add(getData());
|
||||||
|
} else {
|
||||||
|
// TODO (bug 219841): need to add breakpoint error status tracking
|
||||||
|
// in addition to fBreakpointDMContexts.
|
||||||
|
}
|
||||||
countingRM.done();
|
countingRM.done();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue