JAL-2877 disabled Jalview's default tree viewer when loading files
[jalview.git] / src / jalview / ws / DasSequenceFeatureFetcher.java
index c661e2c..06d176e 100644 (file)
@@ -212,7 +212,8 @@ public class DasSequenceFeatureFetcher
 
       if (reply == JvOptionPane.YES_OPTION)
       {
-        Thread thread = new Thread(new FetchDBRefs());
+        Thread thread = new Thread(new FetchDBRefs(),
+                "FetchDBReferenceManagerThread");
         thread.start();
       }
       else
@@ -230,7 +231,7 @@ public class DasSequenceFeatureFetcher
   private void _startFetching()
   {
     running = true;
-    new Thread(new FetchSeqFeatures()).start();
+    new Thread(new FetchSeqFeatures(), "FetchSeqFeaturesThread").start();
   }
 
   class FetchSeqFeatures implements Runnable