JAL-1807 explicit imports (jalview.schemes)
[jalview.git] / src / jalview / schemes / AnnotationColourGradient.java
index 121d6ca..b0822ca 100755 (executable)
@@ -27,6 +27,8 @@ import jalview.datamodel.Annotation;
 import jalview.datamodel.GraphLine;
 import jalview.datamodel.SequenceCollectionI;
 import jalview.datamodel.SequenceI;
+import jalview.renderer.AnnotationRenderer;
+import jalview.util.Comparison;
 
 import java.awt.Color;
 import java.util.IdentityHashMap;
@@ -269,7 +271,7 @@ public class AnnotationColourGradient extends FollowerColourScheme
       if (annotation.annotations != null
               && j < annotation.annotations.length
               && annotation.annotations[j] != null
-              && !jalview.util.Comparison.isGap(c))
+              && !Comparison.isGap(c))
       {
         Annotation aj = annotation.annotations[j];
         // 'use original colours' => colourScheme != null
@@ -309,9 +311,9 @@ public class AnnotationColourGradient extends FollowerColourScheme
                 }
                 else
                 {
-                  currentColour = annotation.annotations[j].secondaryStructure == 'H' ? jalview.renderer.AnnotationRenderer.HELIX_COLOUR
-                          : annotation.annotations[j].secondaryStructure == 'E' ? jalview.renderer.AnnotationRenderer.SHEET_COLOUR
-                                  : jalview.renderer.AnnotationRenderer.STEM_COLOUR;
+                  currentColour = annotation.annotations[j].secondaryStructure == 'H' ? AnnotationRenderer.HELIX_COLOUR
+                          : annotation.annotations[j].secondaryStructure == 'E' ? AnnotationRenderer.SHEET_COLOUR
+                                  : AnnotationRenderer.STEM_COLOUR;
                 }
               }
             }