aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/common/handlermap.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/common/handlermap.hpp')
-rw-r--r--searchcore/src/vespa/searchcore/proton/common/handlermap.hpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/common/handlermap.hpp b/searchcore/src/vespa/searchcore/proton/common/handlermap.hpp
index 3fb32a9d1e0..e762ac527f0 100644
--- a/searchcore/src/vespa/searchcore/proton/common/handlermap.hpp
+++ b/searchcore/src/vespa/searchcore/proton/common/handlermap.hpp
@@ -53,7 +53,6 @@ public:
bool valid() const override { return (_offset < _handlers.size()); }
T *get() const override { return _handlers[_offset].get(); }
- HandlerSP getSP() const { return _handlers[_offset]; }
void next() override { ++_offset; }
};