JAL-1705 temporary variable to aid inspection in debugger
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Thu, 4 Feb 2016 10:29:42 +0000 (10:29 +0000)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Thu, 4 Feb 2016 10:29:42 +0000 (10:29 +0000)
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>();