JAL-1705 temporary variable to aid inspection in debugger
[jalview.git] / src / jalview / ws / seqfetcher / ASequenceFetcher.java
index 7d88414..f825608 100644 (file)
@@ -157,7 +157,8 @@ public class ASequenceFetcher
       Stack<String> queriesLeft = new Stack<String>();
       queriesLeft.addAll(query);
 
-      for (DbSourceProxy fetcher : getSourceProxy(db))
+      List<DbSourceProxy> proxies = getSourceProxy(db);
+      for (DbSourceProxy fetcher : proxies)
       {
         List<String> queriesMade = new ArrayList<String>();
         HashSet<String> queriesFound = new HashSet<String>();