make PH, aPH, CL selection
[jalview.git] / forester / java / src / org / forester / archaeopteryx / Options.java
index 0aecc53..184e795 100644 (file)
@@ -122,7 +122,6 @@ final public class Options {
     private boolean                           _parse_beast_style_extended_nexus_tags;
     private boolean                           _collapsed_with_average_height;
     private boolean                           _show_abbreviated_labels_for_collapsed_nodes;
-    private boolean                           _align_ext_labels_in_phylogram;
     
     private Options() {
         init();
@@ -229,7 +228,6 @@ final public class Options {
         _right_align_domains = false;
         _collapsed_with_average_height = true;
         _show_abbreviated_labels_for_collapsed_nodes = true;
-        _align_ext_labels_in_phylogram = true;
     }
 
     final private void setNumberOfDigitsAfterCommaForBranchLength( final short number_of_digits_after_comma_for_branch_length_values ) {
@@ -624,13 +622,6 @@ final public class Options {
         _show_abbreviated_labels_for_collapsed_nodes =  show_abbreviated_labels_for_collapsed_nodes;
     }
     
-    final boolean isAlignExtLabelsInPhylogram() {
-        return _align_ext_labels_in_phylogram;
-    }
-
-    final void setAlignExtLabelsInPhylogram( final boolean align_ext_labels_in_phylogram ) {
-        _align_ext_labels_in_phylogram = align_ext_labels_in_phylogram;
-    }
-    
+   
     
 }