1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 15:15:25 +02:00

Bug 223364

ProcessCommandQueued should not be called when de-queuing
This commit is contained in:
Marc Khouzam 2008-04-18 20:00:25 +00:00
parent 8d74f0dc4b
commit 8bced60c03

View file

@ -716,9 +716,8 @@ public abstract class AbstractMIControl extends AbstractDsfService
if ( fCommandQueue.size() > 0 ) {
CommandHandle comHandle = fCommandQueue.remove(0);
if ( comHandle != null ) {
processCommandQueued(comHandle);
processCommandSent(comHandle);
fTxCommands.add(comHandle);
processCommandSent(comHandle);
fTxCommands.add(comHandle);
}
}
}