ensure all URL links on the features under the residue get an entry in the 'links... Release_2_4_0
authorjprocter <Jim Procter>
Thu, 4 Sep 2008 12:59:58 +0000 (12:59 +0000)
committerjprocter <Jim Procter>
Thu, 4 Sep 2008 12:59:58 +0000 (12:59 +0000)
src/jalview/appletgui/SeqPanel.java

index 78fe40e..bf392e9 100755 (executable)
@@ -1355,10 +1355,13 @@ public class SeqPanel extends Panel implements MouseMotionListener,
         {
           if (allFeatures[i].links != null)
           {
-            links = new Vector();
+            if (links==null)
+            { 
+              links = new Vector();
+            }
             for (int j = 0; j < allFeatures[i].links.size(); j++)
             {
-              links.addElement(allFeatures[i].links.elementAt(j));
+            links.addElement(allFeatures[i].links.elementAt(j));
             }
           }
         }