inprogress
[jalview.git] / forester / java / src / org / forester / phylogeny / data / BranchData.java
index 68f8e2c..51d895d 100644 (file)
@@ -128,14 +128,6 @@ public class BranchData implements PhylogenyData {
             sb.append( ":" );
             sb.append( getConfidence( 0 ).toNHX() );
         }
-        if ( isHasBranchWidth() && ( getBranchWidth().getValue() != BranchWidth.BRANCH_WIDTH_DEFAULT_VALUE ) ) {
-            sb.append( ":" );
-            sb.append( getBranchWidth().toNHX() );
-        }
-        if ( isHasBranchColor() && ( getBranchColor().getValue() != null ) ) {
-            sb.append( ":" );
-            sb.append( getBranchColor().toNHX() );
-        }
         return sb;
     }