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/09/28 18:13:03 UTC

[2/3] git commit: Make SolverLib.solve public.

Make SolverLib.solve public.

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

Branch: refs/heads/master
Commit: f786f7ba2f583e4d4d6c2627fc42a00a1d01fad4
Parents: 5a8c743
Author: Andy Seaborne <an...@apache.org>
Authored: Sat Sep 27 23:01:46 2014 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Sat Sep 27 23:01:46 2014 +0100

----------------------------------------------------------------------
 .../main/java/com/hp/hpl/jena/tdb/solver/SolverLib.java   | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/f786f7ba/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/solver/SolverLib.java
----------------------------------------------------------------------
diff --git a/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/solver/SolverLib.java b/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/solver/SolverLib.java
index bb05ddf..78bb5fe 100644
--- a/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/solver/SolverLib.java
+++ b/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/solver/SolverLib.java
@@ -200,11 +200,11 @@ public class SolverLib
         }
     }
     
-    private static Iterator<BindingNodeId> solve(NodeTupleTable nodeTupleTable, 
-                                                 Tuple<Node> tuple,
-                                                 boolean anyGraph,
-                                                 Iterator<BindingNodeId> chain, Filter<Tuple<NodeId>> filter,
-                                                 ExecutionContext execCxt)
+    public static Iterator<BindingNodeId> solve(NodeTupleTable nodeTupleTable, 
+                                                Tuple<Node> tuple,
+                                                boolean anyGraph,
+                                                Iterator<BindingNodeId> chain, Filter<Tuple<NodeId>> filter,
+                                                ExecutionContext execCxt)
     {
         return new StageMatchTuple(nodeTupleTable, chain, tuple, anyGraph, filter, execCxt) ;
     }