Revision: 4026
http://bigdata.svn.sourceforge.net/bigdata/?rev=4026&view=rev
Author: thompsonbry
Date: 2010-12-21 13:55:51 +0000 (Tue, 21 Dec 2010)
Log Message:
-----------
Bug fix to predicateUsage(). It was using the wrong iterator (itr vs itr2) in the while(itr.hasNext()) construction.
Modified Paths:
--------------
branches/JOURNAL_HA_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/store/AbstractTripleStore.java
Modified: branches/JOURNAL_HA_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/store/AbstractTripleStore.java
===================================================================
--- branches/JOURNAL_HA_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/store/AbstractTripleStore.java 2010-12-20 23:39:20 UTC (rev 4025)
+++ branches/JOURNAL_HA_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/store/AbstractTripleStore.java 2010-12-21 13:55:51 UTC (rev 4026)
@@ -2747,7 +2747,7 @@
final StringBuilder sb = new StringBuilder();
- while (itr.hasNext()) {
+ while (itr2.hasNext()) {
final BigdataValue term = itr2.next();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|