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 2014/08/26 13:26:54 UTC

svn commit: r1620573 - /jena/trunk/jena-arq/src/main/java/riotcmd/CmdLangParse.java

Author: andy
Date: Tue Aug 26 11:26:53 2014
New Revision: 1620573

URL: http://svn.apache.org/r1620573
Log:
No need to flush the sink - the parser does that.

Modified:
    jena/trunk/jena-arq/src/main/java/riotcmd/CmdLangParse.java

Modified: jena/trunk/jena-arq/src/main/java/riotcmd/CmdLangParse.java
URL: http://svn.apache.org/viewvc/jena/trunk/jena-arq/src/main/java/riotcmd/CmdLangParse.java?rev=1620573&r1=1620572&r2=1620573&view=diff
==============================================================================
--- jena/trunk/jena-arq/src/main/java/riotcmd/CmdLangParse.java (original)
+++ jena/trunk/jena-arq/src/main/java/riotcmd/CmdLangParse.java Tue Aug 26 11:26:53 2014
@@ -258,8 +258,7 @@ public abstract class CmdLangParse exten
             if ( modLangParse.stopOnBadTerm() )
                 return ;
         } finally {
-            // Not close - we may write again to the underlying output stream in another call to parse a file.  
-            sink.finish() ;
+            // Not close the output - we may write again to the underlying output stream in another call to parse a file.  
             IO.close(in) ;
         }
         long x = modTime.endTimer() ;