From: <tho...@us...> - 2014-02-20 00:08:07
|
Revision: 7855 http://sourceforge.net/p/bigdata/code/7855 Author: thompsonbry Date: 2014-02-20 00:08:03 +0000 (Thu, 20 Feb 2014) Log Message: ----------- Missed in the last commit. Modified Paths: -------------- branches/RDR/bigdata-gas/src/java/com/bigdata/rdf/graph/util/AbstractGraphFixture.java Modified: branches/RDR/bigdata-gas/src/java/com/bigdata/rdf/graph/util/AbstractGraphFixture.java =================================================================== --- branches/RDR/bigdata-gas/src/java/com/bigdata/rdf/graph/util/AbstractGraphFixture.java 2014-02-20 00:07:56 UTC (rev 7854) +++ branches/RDR/bigdata-gas/src/java/com/bigdata/rdf/graph/util/AbstractGraphFixture.java 2014-02-20 00:08:03 UTC (rev 7855) @@ -28,7 +28,7 @@ SailConnection cxn = null; try { cxn = getSail().getConnection(); - new SailGraphLoader(cxn).loadGraph(null/* fallback */, resources); + newSailGraphLoader(cxn).loadGraph(null/* fallback */, resources); cxn.commit(); ok = true; } finally { @@ -41,4 +41,10 @@ } + protected SailGraphLoader newSailGraphLoader(SailConnection cxn) { + + return new SailGraphLoader(cxn); + + } + } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |