mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Bugzilla 195703
Found another place where the status needs to be checked. Randy
This commit is contained in:
parent
b3130f8c32
commit
63d77a2cc6
1 changed files with 4 additions and 2 deletions
|
@ -386,8 +386,10 @@ abstract public class AbstractVMProvider implements IVMProvider
|
|||
elementsMultiRequestMon.add(new DataRequestMonitor<List<Object>>(getExecutor(), null) {
|
||||
@Override
|
||||
protected void handleCompleted() {
|
||||
for (int i = 0; i < elementsLength; i++) {
|
||||
update.setChild(getData().get(i), elementsStartIdx + nodeStartIdx + i);
|
||||
if (getStatus().isOK()) {
|
||||
for (int i = 0; i < elementsLength; i++) {
|
||||
update.setChild(getData().get(i), elementsStartIdx + nodeStartIdx + i);
|
||||
}
|
||||
}
|
||||
elementsMultiRequestMon.requestMonitorDone(this);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue