You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by rv...@apache.org on 2013/01/24 12:04:11 UTC

svn commit: r1437951 - /jena/trunk/jena-arq/src-examples/arq/examples/riot/ExRIOT_6.java

Author: rvesse
Date: Thu Jan 24 11:04:11 2013
New Revision: 1437951

URL: http://svn.apache.org/viewvc?rev=1437951&view=rev
Log:
Minor tweak to example

Modified:
    jena/trunk/jena-arq/src-examples/arq/examples/riot/ExRIOT_6.java

Modified: jena/trunk/jena-arq/src-examples/arq/examples/riot/ExRIOT_6.java
URL: http://svn.apache.org/viewvc/jena/trunk/jena-arq/src-examples/arq/examples/riot/ExRIOT_6.java?rev=1437951&r1=1437950&r2=1437951&view=diff
==============================================================================
--- jena/trunk/jena-arq/src-examples/arq/examples/riot/ExRIOT_6.java (original)
+++ jena/trunk/jena-arq/src-examples/arq/examples/riot/ExRIOT_6.java Thu Jan 24 11:04:11 2013
@@ -36,7 +36,7 @@ import com.hp.hpl.jena.sparql.vocabulary
 
 /** Example of using RIOT : iterate over output of parser run */
 public class ExRIOT_5 {
-    
+
     public static void main(String... argv) {
         // Not needed here as we are using RIOT itself via RDFDataMgr, not
         // indirectly.
@@ -79,6 +79,7 @@ public class ExRIOT_5 {
         // ahead of our consumption as the buffer size allows
         while (iter.hasNext()) {
             Triple next = iter.next();
+            // Do something with each triple
         }
     }