mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
[228703] Forgotten change after review.
This commit is contained in:
parent
6063d45e4e
commit
d72885258c
1 changed files with 3 additions and 3 deletions
|
@ -235,12 +235,12 @@ public class MIRunControl extends AbstractDsfService implements IMIRunControl, I
|
|||
protected static class ContainerBreakpointHitEvent extends ContainerSuspendedEvent
|
||||
implements IBreakpointHitDMEvent
|
||||
{
|
||||
final private MIBreakpointDMContext[] fBreakpoints;
|
||||
final private IBreakpointDMContext[] fBreakpoints;
|
||||
|
||||
ContainerBreakpointHitEvent(IContainerDMContext containerDmc, MIBreakpointHitEvent miInfo, IExecutionDMContext triggeringDmc, MIBreakpointDMContext bpCtx) {
|
||||
ContainerBreakpointHitEvent(IContainerDMContext containerDmc, MIBreakpointHitEvent miInfo, IExecutionDMContext triggeringDmc, IBreakpointDMContext bpCtx) {
|
||||
super(containerDmc, miInfo, triggeringDmc);
|
||||
|
||||
fBreakpoints = new MIBreakpointDMContext[] { bpCtx };
|
||||
fBreakpoints = new IBreakpointDMContext[] { bpCtx };
|
||||
}
|
||||
|
||||
public IBreakpointDMContext[] getBreakpoints() {
|
||||
|
|
Loading…
Add table
Reference in a new issue