removed unneeded import
[jalview.git] / forester / java / src / org / forester / phylogeny / data / PhylogenyDataUtil.java
index 09707cd..f40b507 100644 (file)
@@ -35,7 +35,7 @@ import org.forester.util.ForesterUtil;
 
 public final class PhylogenyDataUtil {
 
-    /** Value of -99.0 is used as default value. */
+    /** Value of -1024.0 is used as default value. */
     public final static double BRANCH_LENGTH_DEFAULT = -1024.0;
 
     public static void appendClose( final Writer w, final String element_name ) throws IOException {
@@ -351,7 +351,7 @@ public final class PhylogenyDataUtil {
 
     /**
      * Creates a deep copy of ArrayList of PhylogenyData objects.
-     * 
+     *
      * @param list
      *            an ArrayList of PhylogenyData objects
      * @return a deep copy of ArrayList list
@@ -371,12 +371,6 @@ public final class PhylogenyDataUtil {
                     org.forester.util.ForesterUtil.roundToInt( y2 ) );
     }
 
-    public static void drawString( final String str, final double x, final double y, final Graphics g ) {
-        g.drawString( str,
-                      org.forester.util.ForesterUtil.roundToInt( x ),
-                      org.forester.util.ForesterUtil.roundToInt( y ) );
-    }
-
     public static String replaceIllegalXmlCharacters( final String value ) {
         String v = value.replaceAll( "&", "&" );
         v = v.replaceAll( "<", "&lt;" );