regex search
[jalview.git] / forester / java / src / org / forester / util / EasyWriter.java
index 5fc907d..f07edab 100644 (file)
@@ -8,7 +8,7 @@ public final class EasyWriter extends BufferedWriter {
 
     private final static String LINE_SEPARATOR = ForesterUtil.LINE_SEPARATOR;
 
-    public EasyWriter( BufferedWriter out ) {
+    public EasyWriter( final BufferedWriter out ) {
         super( out );
     }
 
@@ -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 );
     }