summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--storage/src/vespa/storage/persistence/messages.h3
-rw-r--r--storageapi/src/vespa/storageapi/messageapi/messagehandler.h1
2 files changed, 0 insertions, 4 deletions
diff --git a/storage/src/vespa/storage/persistence/messages.h b/storage/src/vespa/storage/persistence/messages.h
index f74a102f3e0..a465437ae21 100644
--- a/storage/src/vespa/storage/persistence/messages.h
+++ b/storage/src/vespa/storage/persistence/messages.h
@@ -30,9 +30,6 @@ public:
document::Bucket getBucket() const override { return _bucket; }
spi::IteratorId getIteratorId() const { return _iteratorId; }
- void setIteratorId(spi::IteratorId iteratorId) { _iteratorId = iteratorId; }
-
- void setMaxByteSize(uint32_t maxByteSize) { _maxByteSize = maxByteSize; }
uint32_t getMaxByteSize() const { return _maxByteSize; }
api::LockingRequirements lockingRequirements() const noexcept override {
diff --git a/storageapi/src/vespa/storageapi/messageapi/messagehandler.h b/storageapi/src/vespa/storageapi/messageapi/messagehandler.h
index fd0087d6f91..067858a0b61 100644
--- a/storageapi/src/vespa/storageapi/messageapi/messagehandler.h
+++ b/storageapi/src/vespa/storageapi/messageapi/messagehandler.h
@@ -131,7 +131,6 @@ public:
virtual bool onRevert(const std::shared_ptr<api::RevertCommand>&) { return false; }
virtual bool onRevertReply(const std::shared_ptr<api::RevertReply>&) { return false; }
- // Visiting
virtual bool onCreateVisitor(const std::shared_ptr<api::CreateVisitorCommand>&) { return false; }
virtual bool onCreateVisitorReply(const std::shared_ptr<api::CreateVisitorReply>&) { return false; }
virtual bool onDestroyVisitor(const std::shared_ptr<api::DestroyVisitorCommand>&) { return false; }