X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Futil%2FEasyWriter.java;h=f07edab49d0cf876739376e9d0b591b95fd26522;hb=f47b5de663d2ca59a4d53587ea8d5cd20c594db2;hp=f2895550056914e3fbd6f2e704b070663e62cce6;hpb=e174d62534f7fc6f3de133d523a402a87735b27f;p=jalview.git diff --git a/forester/java/src/org/forester/util/EasyWriter.java b/forester/java/src/org/forester/util/EasyWriter.java index f289555..f07edab 100644 --- a/forester/java/src/org/forester/util/EasyWriter.java +++ b/forester/java/src/org/forester/util/EasyWriter.java @@ -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 ); }