JAL-3210 Barebones gradle/buildship/eclipse. See README
[jalview.git] / src / jalview / datamodel / SequenceI.java
index 0b26564..933f332 100755 (executable)
@@ -584,48 +584,6 @@ public interface SequenceI extends ASequenceI
    */
   public int firstResidueOutsideIterator(Iterator<int[]> it);
 
-  /**
-   * @author Bob Hanson 2019.07.30
-   * 
-   * get a 4-byte color, with caching
-   * 
-   */
-  public int getColor(int i);
-
-  /**
-   * @author Bob Hanson 2019.07.30
-   * 
-   * set a 4-byte color, with caching
-   * 
-   */
-  public int setColor(int i, int argb);
-
-  /**
-   * @author Bob Hanson 2019.07.30
-   * 
-   * allows resetting the color cache
-   * 
-   */
-  public void resetColors();
-
-  /**
-   * allows passing the result ArrayList as a parameter to avoid unnecessary
-   * construction
-   * 
-   * @author Bob Hanson 2019.07.30
-   * 
-   * 
-   */
-  List<SequenceFeature> findFeatures(int column, String type,
-          List<SequenceFeature> result);
-
-  /**
-   * allows early intervention for renderer if false
-   * 
-   * @author Bob Hanson 2019.07.30
-   * 
-   */
-  public boolean hasFeatures(String type);
 
 }