JAL-2844 colouring subtree method made public
[jalview.git] / forester / java / src / org / forester / util / EasyWriter.java
index f289555..0cbe697 100644 (file)
@@ -16,8 +16,14 @@ public final class EasyWriter extends BufferedWriter {
         write( s );
         write( LINE_SEPARATOR );
     }
+    
+
+    public void println() throws IOException {
+        write( LINE_SEPARATOR );
+    }
 
     public void print( final String s ) throws IOException {
         write( s );
     }
 }