JAL-2599 HMMs can now be dropped onto the desktop
[jalview.git] / src / jalview / datamodel / AlignmentAnnotation.java
index 404f51f..8f826f5 100755 (executable)
@@ -53,8 +53,6 @@ public class AlignmentAnnotation
 
   private static long counter = 0;
 
-  private HiddenMarkovModel hmm;
-
   /**
    * If true, this annotations is calculated every edit, eg consensus, quality
    * or conservation graphs
@@ -1506,13 +1504,4 @@ public class AlignmentAnnotation
     return graphMin < graphMax;
   }
 
-  public HiddenMarkovModel getHMM()
-  {
-    return hmm;
-  }
-
-  public void setHMM(HiddenMarkovModel hmm)
-  {
-    this.hmm = hmm;
-  }
 }