diff --git a/ecl/hthor/hthorkey.cpp b/ecl/hthor/hthorkey.cpp index 16ea4aee6ab..da82a9ef7cf 100644 --- a/ecl/hthor/hthorkey.cpp +++ b/ecl/hthor/hthorkey.cpp @@ -3985,7 +3985,6 @@ class CHThorKeyedJoinActivity : public CHThorThreadedActivityBase, implements I helper.createSegmentMonitors(manager, row); manager->finishSegmentMonitors(); manager->reset(); - manager->resetCounts(); } virtual void doneManager(IKeyManager * manager) diff --git a/system/jhtree/jhtree.cpp b/system/jhtree/jhtree.cpp index 1af6f14f6fb..1d0613defed 100644 --- a/system/jhtree/jhtree.cpp +++ b/system/jhtree/jhtree.cpp @@ -391,11 +391,6 @@ class jhtree_decl CKeyLevelManager : implements IKeyManager, public CInterface return keyCursor ? 1 : 0; } - virtual void resetCounts() - { - //stats.reset(); - } - void setKey(IKeyIndexBase * _key) { ::Release(keyCursor); diff --git a/system/jhtree/jhtree.hpp b/system/jhtree/jhtree.hpp index f52910d65b2..d22531c3b70 100644 --- a/system/jhtree/jhtree.hpp +++ b/system/jhtree/jhtree.hpp @@ -264,7 +264,6 @@ interface IKeyManager : public IInterface, extends IIndexReadContext virtual void deserializeCursorPos(MemoryBuffer &mb) = 0; virtual const byte *loadBlob(unsigned __int64 blobid, size32_t &blobsize, IContextLogger *ctx) = 0; virtual void releaseBlobs() = 0; - virtual void resetCounts() = 0; virtual void setLayoutTranslator(const IDynamicTransform * trans) = 0; virtual void finishSegmentMonitors() = 0;