1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

[255244] - [run control] SteppingControl always traces "enqueueStep"

This commit is contained in:
Pawel Piech 2008-11-13 18:37:29 +00:00
parent cc02a4b710
commit 10706627ba

View file

@ -348,7 +348,7 @@ public final class SteppingController implements IStepQueueManager
* @param stepType Type of step to execute.
*/
public void enqueueStep(final IExecutionDMContext execCtx, final StepType stepType) {
System.out.println("[SteppingController] enqueueStep ctx=" + execCtx); //$NON-NLS-1$
if (DEBUG) System.out.println("[SteppingController] enqueueStep ctx=" + execCtx); //$NON-NLS-1$
if (!shouldDelayStep(execCtx) || doCanEnqueueStep(execCtx, stepType)) {
doEnqueueStep(execCtx, stepType);
processStepQueue(execCtx);