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

fix for Bug 142953

This commit is contained in:
David McKnight 2006-09-27 14:40:12 +00:00
parent ae1210c41f
commit 43d4156a7d
2 changed files with 10 additions and 2 deletions

View file

@ -50,10 +50,11 @@ public class DStoreShellOutputReader extends AbstractHostShellOutputReader imple
if (_status != null && _keepRunning)
{
int newSize = _status.getNestedSize();
while (newSize > _statusOffset)
{
DataElement line = _status.get(_statusOffset++);
String type = line.getType();

View file

@ -82,11 +82,18 @@ public class DStoreServiceCommandShell extends ServiceCommandShell
outputs[i] = output;
}
}
if (_lastRefreshJob == null || _lastRefreshJob.isComplete())
//if (_lastRefreshJob == null || _lastRefreshJob.isComplete())
{
_lastRefreshJob = new OutputRefreshJob(this, outputs, false);
_lastRefreshJob.schedule();
}
/*
else
{
_lastRefreshJob.addOutputs(outputs);
_lastRefreshJob.schedule();
}
*/
}
}