mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
[266472] [run control] SteppingController disables stepping if there is no participant
This commit is contained in:
parent
093d3bcaf6
commit
fb52538f7d
1 changed files with 3 additions and 1 deletions
|
@ -465,7 +465,9 @@ public final class SteppingController
|
||||||
* @param execCtx
|
* @param execCtx
|
||||||
*/
|
*/
|
||||||
private void disableStepping(IExecutionDMContext execCtx) {
|
private void disableStepping(IExecutionDMContext execCtx) {
|
||||||
fStepInProgress.put(execCtx, new ArrayList<ISteppingControlParticipant>(fParticipants));
|
if (!fParticipants.isEmpty()) {
|
||||||
|
fStepInProgress.put(execCtx, new ArrayList<ISteppingControlParticipant>(fParticipants));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue