removed unneeded import
[jalview.git] / forester / java / src / org / forester / phylogeny / data / Confidence.java
index 1d490ff..32f1f85 100644 (file)
@@ -160,7 +160,7 @@ public class Confidence implements PhylogenyData, Comparable<Confidence> {
 
     @Override
     public void toPhyloXML( final Writer writer, final int level, final String indentation ) throws IOException {
-        if ( getValue() == CONFIDENCE_DEFAULT_VALUE ) {
+        if ( getValue() == CONFIDENCE_DEFAULT_VALUE || getValue() < -1 ) {
             return;
         }
         writer.write( ForesterUtil.LINE_SEPARATOR );