1
0
Fork 0
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:
Anton Leherbauer 2009-03-02 11:02:33 +00:00
parent 093d3bcaf6
commit fb52538f7d

View file

@ -465,8 +465,10 @@ public final class SteppingController
* @param execCtx * @param execCtx
*/ */
private void disableStepping(IExecutionDMContext execCtx) { private void disableStepping(IExecutionDMContext execCtx) {
if (!fParticipants.isEmpty()) {
fStepInProgress.put(execCtx, new ArrayList<ISteppingControlParticipant>(fParticipants)); fStepInProgress.put(execCtx, new ArrayList<ISteppingControlParticipant>(fParticipants));
} }
}
/** /**
* Indicate that processing of the last step has completed and * Indicate that processing of the last step has completed and