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 2016/07/09 09:38:58 UTC

[02/18] jena git commit: Ensure initialized

Ensure initialized

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

Branch: refs/heads/master
Commit: 37239df2e2a367f8cf00d03dbba2083ebc3f9f97
Parents: f8154a9
Author: Andy Seaborne <an...@apache.org>
Authored: Wed Jul 6 23:20:23 2016 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Wed Jul 6 23:20:23 2016 +0100

----------------------------------------------------------------------
 jena-arq/src/main/java/org/apache/jena/sparql/util/ExprUtils.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/37239df2/jena-arq/src/main/java/org/apache/jena/sparql/util/ExprUtils.java
----------------------------------------------------------------------
diff --git a/jena-arq/src/main/java/org/apache/jena/sparql/util/ExprUtils.java b/jena-arq/src/main/java/org/apache/jena/sparql/util/ExprUtils.java
index 333ffde..c341e9f 100644
--- a/jena-arq/src/main/java/org/apache/jena/sparql/util/ExprUtils.java
+++ b/jena-arq/src/main/java/org/apache/jena/sparql/util/ExprUtils.java
@@ -42,13 +42,14 @@ import org.apache.jena.sparql.serializer.SerializationContext ;
 import org.apache.jena.sparql.sse.SSE ;
 import org.apache.jena.sparql.sse.SSEParseException ;
 import org.apache.jena.sparql.sse.builders.ExprBuildException ;
+import org.apache.jena.system.JenaSystem ;
 
 
 /** Misc support for Expr */
 
 public class ExprUtils
 {
- 
+    static { JenaSystem.init(); }
     public static Expr nodeToExpr(Node n)
     {
         if ( n.isVariable() )