JAL-1359 simpler logic for deciding if all threads have finished.
[jalview.git] / src / jalview / ws / jws2 / Jws2Discoverer.java
index 8ad14e0..2724d29 100644 (file)
@@ -189,7 +189,9 @@ public class Jws2Discoverer implements Runnable, WSMenuEntryProviderI
       ;
       for (JabaWsServerQuery squery : qrys)
       {
-        finished = finished && !squery.isRunning();
+        if (squery.isRunning()){
+          finished=false;
+        }
       }
       if (aborted)
       {