removed unneeded import
[jalview.git] / forester / java / src / org / forester / clade_analysis / Prefix.java
index 64a7b47..009c63f 100644 (file)
@@ -6,7 +6,7 @@ import java.text.DecimalFormat;
 
 public final class Prefix {
 
-    private final static DecimalFormat df = new DecimalFormat( "0.0#####" );
+    private final static DecimalFormat df = new DecimalFormat( "0.0###" );
     private final String               _prefix;
     private final BigDecimal           _confidence;
     private final String               _separator;
@@ -36,11 +36,11 @@ public final class Prefix {
         }
     }
 
-    public  String getPrefix() {
+    public String getPrefix() {
         return _prefix;
     }
 
-    public  String getPrefixFirstElement() {
+    public String getPrefixFirstElement() {
         return _first;
     }