You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2011/12/26 19:42:47 UTC

svn commit: r1224786 - /incubator/jena/Jena2/ARQ/trunk/src/main/java/org/openjena/atlas/io/IndentedWriter.java

Author: andy
Date: Mon Dec 26 18:42:47 2011
New Revision: 1224786

URL: http://svn.apache.org/viewvc?rev=1224786&view=rev
Log: (empty)

Modified:
    incubator/jena/Jena2/ARQ/trunk/src/main/java/org/openjena/atlas/io/IndentedWriter.java

Modified: incubator/jena/Jena2/ARQ/trunk/src/main/java/org/openjena/atlas/io/IndentedWriter.java
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/ARQ/trunk/src/main/java/org/openjena/atlas/io/IndentedWriter.java?rev=1224786&r1=1224785&r2=1224786&view=diff
==============================================================================
--- incubator/jena/Jena2/ARQ/trunk/src/main/java/org/openjena/atlas/io/IndentedWriter.java (original)
+++ incubator/jena/Jena2/ARQ/trunk/src/main/java/org/openjena/atlas/io/IndentedWriter.java Mon Dec 26 18:42:47 2011
@@ -175,6 +175,7 @@ public class IndentedWriter
     public void close() { try { out.close(); } catch (IOException ex) {} }
     public void flush() { try { out.flush(); } catch (IOException ex) {} }
     
+    /** Pad to the indent (if we are before it) */
     public void pad()
     {
         if ( startingNewLine && currentIndent > 0 )