summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/datastorequery.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/common/datastorequery.cpp b/common/datastorequery.cpp
index 087f405..aa0056c 100644
--- a/common/datastorequery.cpp
+++ b/common/datastorequery.cpp
@@ -296,7 +296,6 @@ public:
296 while(!foundValue && mSource->next([this, callback, &foundValue](const ResultSet::Result &result) { 296 while(!foundValue && mSource->next([this, callback, &foundValue](const ResultSet::Result &result) {
297 mBloomValue = result.entity.getProperty(mBloomProperty); 297 mBloomValue = result.entity.getProperty(mBloomProperty);
298 auto results = indexLookup(mBloomProperty, mBloomValue); 298 auto results = indexLookup(mBloomProperty, mBloomValue);
299 SinkWarning() << "Bloomed on value " << mBloomValue << " and found " << results.size();
300 for (const auto &r : results) { 299 for (const auto &r : results) {
301 readEntity(r, [&, this](const Sink::ApplicationDomain::ApplicationDomainType &entity, Sink::Operation operation) { 300 readEntity(r, [&, this](const Sink::ApplicationDomain::ApplicationDomainType &entity, Sink::Operation operation) {
302 callback({entity, Sink::Operation_Creation}); 301 callback({entity, Sink::Operation_Creation});