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/04/05 19:50:27 UTC

svn commit: r1585150 - /jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/nodetable/NodeTupleTableConcrete.java

Author: andy
Date: Sat Apr  5 17:50:27 2014
New Revision: 1585150

URL: http://svn.apache.org/r1585150
Log:
Unnecessary checking

Modified:
    jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/nodetable/NodeTupleTableConcrete.java

Modified: jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/nodetable/NodeTupleTableConcrete.java
URL: http://svn.apache.org/viewvc/jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/nodetable/NodeTupleTableConcrete.java?rev=1585150&r1=1585149&r2=1585150&view=diff
==============================================================================
--- jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/nodetable/NodeTupleTableConcrete.java (original)
+++ jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/nodetable/NodeTupleTableConcrete.java Sat Apr  5 17:50:27 2014
@@ -152,10 +152,7 @@ public class NodeTupleTableConcrete impl
     public Iterator<Tuple<NodeId>> find(NodeId... ids)
     {
         Tuple<NodeId> tuple = Tuple.create(ids) ;
-        try {
-            startRead() ;
-            return find(tuple) ; // **public call
-        } finally { finishRead() ; }
+        return find(tuple) ;
     }
 
     /** Find by NodeId. */