in progress...
[jalview.git] / forester / java / src / org / forester / phylogeny / data / BranchData.java
index 6a517b8..6e8ded3 100644 (file)
@@ -23,7 +23,7 @@
 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 //
 // Contact: phylosoft @ gmail . com
-// WWW: www.phylosoft.org/forester
+// WWW: https://sites.google.com/site/cmzmasek/home/software/forester
 
 package org.forester.phylogeny.data;
 
@@ -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;
     }