JAL-1807 explicit imports (jalview.gui)
[jalview.git] / src / jalview / gui / FeatureRenderer.java
index 9e09bfb..6e03dd7 100644 (file)
@@ -23,7 +23,9 @@ package jalview.gui;
 import jalview.datamodel.SearchResults;
 import jalview.datamodel.SequenceFeature;
 import jalview.datamodel.SequenceI;
+import jalview.io.FeaturesFile;
 import jalview.schemes.GraduatedColor;
+import jalview.schemes.UserColourScheme;
 import jalview.util.MessageManager;
 
 import java.awt.BorderLayout;
@@ -200,7 +202,7 @@ public class FeatureRenderer extends jalview.renderer.seqfeatures.FeatureRendere
           Object col = getFeatureStyle(name.getText());
           if (col == null)
           {
-            col = new jalview.schemes.UserColourScheme()
+            col = new UserColourScheme()
                     .createColourFromName(name.getText());
           }
           oldcol = fcol = col;
@@ -322,7 +324,7 @@ public class FeatureRenderer extends jalview.renderer.seqfeatures.FeatureRendere
             bigPanel, title, JOptionPane.YES_NO_CANCEL_OPTION,
             JOptionPane.QUESTION_MESSAGE, null, options, MessageManager.getString("action.ok"));
 
-    jalview.io.FeaturesFile ffile = new jalview.io.FeaturesFile();
+    FeaturesFile ffile = new FeaturesFile();
 
     if (reply == JOptionPane.OK_OPTION && name.getText().length() > 0)
     {