Bug 1581: Avoid exception when desktop is not alive in LongOperationFeedback

FEA: ItEr77S04BugFixing
This commit is contained in:
Manuel Rego Casasnovas 2012-11-28 09:44:27 +01:00
parent 0efc10a662
commit 8d9a92d7ba

View file

@ -266,6 +266,9 @@ public class LongOperationFeedback {
if (current.isEnd()) {
return;
}
if (!desktop.isAlive()) {
return;
}
try {
Executions.activate(desktop);
} catch (Exception e) {