inprogress
[jalview.git] / forester / java / src / org / forester / util / EasyWriter.java
index f289555..f07edab 100644 (file)
@@ -17,6 +17,10 @@ public final class EasyWriter extends BufferedWriter {
         write( LINE_SEPARATOR );
     }
 
+    public void println() throws IOException {
+        write( LINE_SEPARATOR );
+    }
+
     public void print( final String s ) throws IOException {
         write( s );
     }