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

Bug 243632 There was a typo in the code for resuming all threads.

This commit is contained in:
Marc Khouzam 2008-08-14 20:12:51 +00:00
parent f5c6039248
commit c26e38fedc

View file

@ -480,7 +480,7 @@ public class MIRunControlNS extends AbstractDsfService implements IRunControl
}
private void doResumeContainer(IContainerDMContext context, final RequestMonitor rm) {
MIExecContinue cmd = new MIExecContinue(context, false);
MIExecContinue cmd = new MIExecContinue(context, true);
fConnection.queueCommand(cmd, new DataRequestMonitor<MIInfo>(getExecutor(), rm));
}