in progress...
[jalview.git] / forester / java / src / org / forester / phylogeny / data / BranchData.java
index 68f8e2c..6e8ded3 100644 (file)
@@ -39,7 +39,7 @@ public class BranchData implements PhylogenyData {
     private BranchWidth      _branch_width;
 
     public BranchData() {
-        // Doing nothing. 
+        // Doing nothing.
     }
 
     public void addConfidence( final Confidence confidence ) {
@@ -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;
     }