1
0
Fork 0
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:
Randy Rohrbach 2007-07-06 22:35:03 +00:00
parent b3130f8c32
commit 63d77a2cc6

View file

@ -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);
}