Author: andy
Date: Wed May 28 08:35:36 2014
New Revision: 1597947

URL: http://svn.apache.org/r1597947
Log:
Remove incorrect comment. Remove setting the effectiveDefaultGraph. (It does 
not work that way.)

Modified:
    
jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/store/DatasetGraphTDB.java

Modified: 
jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/store/DatasetGraphTDB.java
URL: 
http://svn.apache.org/viewvc/jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/store/DatasetGraphTDB.java?rev=1597947&r1=1597946&r2=1597947&view=diff
==============================================================================
--- 
jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/store/DatasetGraphTDB.java
 (original)
+++ 
jena/trunk/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/store/DatasetGraphTDB.java
 Wed May 28 08:35:36 2014
@@ -117,8 +117,6 @@ public class DatasetGraphTDB extends Dat
     public GraphTDB getGraphTDB(Node graphNode)
     { return (GraphTDB)getGraph(graphNode) ; }
 
-    // The effective graph may not be the concrete storage one (e.g. union)
-    
     @Override
     protected void _close() {
         if ( closed )
@@ -166,7 +164,7 @@ public class DatasetGraphTDB extends Dat
     protected Graph _createNamedGraph(Node graphNode)
     { return new GraphTDB(this, graphNode) ; }
 
-    public void setEffectiveDefaultGraph(GraphTDB g)       { 
effectiveDefaultGraph = g ; }
+    //public void setEffectiveDefaultGraph(GraphTDB g)       { 
effectiveDefaultGraph = g ; }
 
     public GraphTDB getEffectiveDefaultGraph()             { return 
effectiveDefaultGraph ; }
 


Reply via email to