Unrecurse

Project: http://git-wip-us.apache.org/repos/asf/jena/repo
Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/38d5dfc5
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/38d5dfc5
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/38d5dfc5

Branch: refs/heads/master
Commit: 38d5dfc5b920ae51076f8c5693c8d919514f514d
Parents: 52d17ab
Author: Andy Seaborne <a...@apache.org>
Authored: Thu Sep 15 13:34:55 2016 +0100
Committer: Andy Seaborne <a...@apache.org>
Committed: Thu Sep 15 14:34:57 2016 +0100

----------------------------------------------------------------------
 jena-arq/src/main/java/org/apache/jena/sparql/SystemARQ.java     | 4 ++--
 .../main/java/org/apache/jena/fuseki/servlets/SPARQL_Update.java | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/38d5dfc5/jena-arq/src/main/java/org/apache/jena/sparql/SystemARQ.java
----------------------------------------------------------------------
diff --git a/jena-arq/src/main/java/org/apache/jena/sparql/SystemARQ.java 
b/jena-arq/src/main/java/org/apache/jena/sparql/SystemARQ.java
index 108c727..d84a164 100644
--- a/jena-arq/src/main/java/org/apache/jena/sparql/SystemARQ.java
+++ b/jena-arq/src/main/java/org/apache/jena/sparql/SystemARQ.java
@@ -121,9 +121,9 @@ public class SystemARQ
     }
     
     private static void syncIfNotView(Graph g) {
-        // GraphView sync calls the DatasetGraph leading to possible recursion.
+        // GraphView sync calls the DatasetGraph lead to possible recursion.
         if ( !( g instanceof GraphView) ) 
-            syncIfNotView(g) ;
+            sync(g) ;
     }
 
     /** Sync an object if synchronizable (model, graph, dataset). */

http://git-wip-us.apache.org/repos/asf/jena/blob/38d5dfc5/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQL_Update.java
----------------------------------------------------------------------
diff --git 
a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQL_Update.java
 
b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQL_Update.java
index dd81de8..7ffa028 100644
--- 
a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQL_Update.java
+++ 
b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQL_Update.java
@@ -219,7 +219,7 @@ public class SPARQL_Update extends SPARQL_Protocol
 
         // If the dsg is transactional, then we can parse and execute the 
update in a streaming fashion.
         // If it isn't, we need to read the entire update request before 
performing any updates, because
-        // we have to attempt to make the request atomic in the face of 
malformed queries
+        // we have to attempt to make the request atomic in the face of 
malformed updates
         UpdateRequest req = null ;
         if (!action.isTransactional()) {
             try {

Reply via email to