Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-05-15 11:59:59 +0000
committerUwe Stieber2012-05-15 11:59:59 +0000
commit52ead4c88685c0e790ffbf3b23fbeb2f071fe471 (patch)
tree82ed7a152e4fb04f5a321a7ca3fdb8501e9daade /target_explorer
parent69af8dc51998dd884809caf30b1b74862ac22e7a (diff)
downloadorg.eclipse.tcf-52ead4c88685c0e790ffbf3b23fbeb2f071fe471.tar.gz
org.eclipse.tcf-52ead4c88685c0e790ffbf3b23fbeb2f071fe471.tar.xz
org.eclipse.tcf-52ead4c88685c0e790ffbf3b23fbeb2f071fe471.zip
Target Explorer: Fix findbugs warning
Diffstat (limited to 'target_explorer')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.concurrent/src/org/eclipse/tcf/te/runtime/concurrent/util/ExecutorsUtil.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.concurrent/src/org/eclipse/tcf/te/runtime/concurrent/util/ExecutorsUtil.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime.concurrent/src/org/eclipse/tcf/te/runtime/concurrent/util/ExecutorsUtil.java
index f07026c03..09419ba4b 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime.concurrent/src/org/eclipse/tcf/te/runtime/concurrent/util/ExecutorsUtil.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.concurrent/src/org/eclipse/tcf/te/runtime/concurrent/util/ExecutorsUtil.java
@@ -214,7 +214,7 @@ public final class ExecutorsUtil {
synchronized(runnable) {
try {
- if (!invoked.get()) runnable.wait();
+ while (!invoked.get()) runnable.wait();
} catch (InterruptedException e) {
/* ignored on purpose */
}

Back to the top