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 2017/07/06 10:30:30 UTC

jena git commit: Make IsoMatcher constructor and method public

Repository: jena
Updated Branches:
  refs/heads/master 97dd1fde5 -> 6857bf5b8


Make IsoMatcher constructor and method public


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

Branch: refs/heads/master
Commit: 6857bf5b8dac70937ac51e37735675ef57b83dbb
Parents: 97dd1fd
Author: Andy Seaborne <an...@apache.org>
Authored: Thu Jul 6 11:30:22 2017 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Thu Jul 6 11:30:22 2017 +0100

----------------------------------------------------------------------
 .../src/main/java/org/apache/jena/sparql/util/IsoMatcher.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/6857bf5b/jena-arq/src/main/java/org/apache/jena/sparql/util/IsoMatcher.java
----------------------------------------------------------------------
diff --git a/jena-arq/src/main/java/org/apache/jena/sparql/util/IsoMatcher.java b/jena-arq/src/main/java/org/apache/jena/sparql/util/IsoMatcher.java
index 57a84a6..446faae 100644
--- a/jena-arq/src/main/java/org/apache/jena/sparql/util/IsoMatcher.java
+++ b/jena-arq/src/main/java/org/apache/jena/sparql/util/IsoMatcher.java
@@ -164,14 +164,14 @@ public class IsoMatcher
         return tuples ;
     }
 
-    private IsoMatcher(List<Tuple<Node>> g1, List<Tuple<Node>> g2, EqualityTest nodeTest) {
+    public IsoMatcher(List<Tuple<Node>> g1, List<Tuple<Node>> g2, EqualityTest nodeTest) {
         this.tuples1 = g1 ;
         this.tuples2 = g2 ;
         this.nodeTest = nodeTest ;
     }
 
     // May MUTATE tuples1 or tuples2
-    private boolean match() {
+    public boolean match() {
         return match(tuples1, tuples2, Mapping.rootMapping) ;
     }