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 2015/09/11 19:05:48 UTC

[2/4] jena git commit: Remove methods that only call super.

Remove methods that only call super.

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

Branch: refs/heads/master
Commit: b064a3b8395d36826730d420aee15b10904459de
Parents: 0f097d5
Author: Andy Seaborne <an...@apache.org>
Authored: Thu Sep 10 10:19:29 2015 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Thu Sep 10 10:19:29 2015 +0100

----------------------------------------------------------------------
 .../org/apache/jena/tdb/solver/OpExecutorTDB1.java  | 16 ----------------
 1 file changed, 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/b064a3b8/jena-tdb/src/main/java/org/apache/jena/tdb/solver/OpExecutorTDB1.java
----------------------------------------------------------------------
diff --git a/jena-tdb/src/main/java/org/apache/jena/tdb/solver/OpExecutorTDB1.java b/jena-tdb/src/main/java/org/apache/jena/tdb/solver/OpExecutorTDB1.java
index 77cfbfa..eeff69c 100644
--- a/jena-tdb/src/main/java/org/apache/jena/tdb/solver/OpExecutorTDB1.java
+++ b/jena-tdb/src/main/java/org/apache/jena/tdb/solver/OpExecutorTDB1.java
@@ -87,22 +87,6 @@ public class OpExecutorTDB1 extends OpExecutor
         return super.exec(op, input) ;
     } 
     
-    // Retrieving nodes isn't so bad because they will be needed anyway.
-    // And if their duplicates, likely to be cached.
-    // Need to work with SolverLib which wraps the NodeId bindgins with a converter. 
-    
-    @Override
-    protected QueryIterator execute(OpDistinct opDistinct, QueryIterator input)
-    {
-        return super.execute(opDistinct, input) ;
-    }
-    
-    @Override
-    protected QueryIterator execute(OpReduced opReduced, QueryIterator input)
-    {
-        return super.execute(opReduced, input) ;
-    }
-    
     @Override
     protected QueryIterator execute(OpFilter opFilter, QueryIterator input)
     {