JAL-1114 - refactor methods handling Vectors and Hashtables to Lists and Maps, and...
[jalview.git] / src / jalview / schemes / ResidueColourScheme.java
index 90833c9..bbba865 100755 (executable)
@@ -20,10 +20,12 @@ package jalview.schemes;
 import jalview.analysis.AAFrequency;
 import jalview.analysis.Conservation;
 import jalview.datamodel.AnnotatedCollectionI;
+import jalview.datamodel.SequenceCollectionI;
 import jalview.datamodel.SequenceI;
 
 import java.awt.Color;
 import java.util.Hashtable;
+import java.util.Map;
 
 /**
  * DOCUMENT ME!
@@ -105,8 +107,6 @@ public class ResidueColourScheme implements ColourSchemeI
 
     return currentColour;
   }
-  @Override public void alignmentChanged(AnnotatedCollectionI alignment) {};
-
   /**
    * Get the percentage threshold for this colour scheme
    * 
@@ -282,4 +282,10 @@ public class ResidueColourScheme implements ColourSchemeI
     return currentColour;
   }
 
+  @Override
+  public void alignmentChanged(AnnotatedCollectionI alignment,
+          Map<SequenceI, SequenceCollectionI> hiddenReps)
+  {
+  }
+
 }