mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 06:55:23 +02:00
Bug 223364
ProcessCommandQueued should not be called when de-queuing
This commit is contained in:
parent
8d74f0dc4b
commit
8bced60c03
1 changed files with 2 additions and 3 deletions
|
@ -716,9 +716,8 @@ public abstract class AbstractMIControl extends AbstractDsfService
|
||||||
if ( fCommandQueue.size() > 0 ) {
|
if ( fCommandQueue.size() > 0 ) {
|
||||||
CommandHandle comHandle = fCommandQueue.remove(0);
|
CommandHandle comHandle = fCommandQueue.remove(0);
|
||||||
if ( comHandle != null ) {
|
if ( comHandle != null ) {
|
||||||
processCommandQueued(comHandle);
|
processCommandSent(comHandle);
|
||||||
processCommandSent(comHandle);
|
fTxCommands.add(comHandle);
|
||||||
fTxCommands.add(comHandle);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue