Bug 1581: Avoid exception when desktop is not alive in LongOperationFeedback
FEA: ItEr77S04BugFixing
This commit is contained in:
parent
0efc10a662
commit
8d9a92d7ba
1 changed files with 3 additions and 0 deletions
|
|
@ -266,6 +266,9 @@ public class LongOperationFeedback {
|
|||
if (current.isEnd()) {
|
||||
return;
|
||||
}
|
||||
if (!desktop.isAlive()) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
Executions.activate(desktop);
|
||||
} catch (Exception e) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue