summaryrefslogtreecommitdiffstats
path: root/messagebus
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-07-25 09:56:35 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-07-25 09:56:35 +0200
commitb6369ba90745057067eafc6d44d2b402b4e826b6 (patch)
tree980baf9f033d0dbd6fe24fde14cbfdb3a710f7b8 /messagebus
parent213cfe2820995dc073fb901eea02fffa6d52534a (diff)
Also remove method declaration.
Diffstat (limited to 'messagebus')
-rw-r--r--messagebus/src/vespa/messagebus/protocolrepository.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/messagebus/src/vespa/messagebus/protocolrepository.h b/messagebus/src/vespa/messagebus/protocolrepository.h
index 52cd31364c1..d04fd361f3a 100644
--- a/messagebus/src/vespa/messagebus/protocolrepository.h
+++ b/messagebus/src/vespa/messagebus/protocolrepository.h
@@ -43,16 +43,6 @@ public:
IProtocol::SP putProtocol(const IProtocol::SP & protocol);
/**
- * Returns whether or not this repository contains a protocol with the given name. Given the concurrent
- * nature of things, one should not invoke this method followed by {@link #getProtocol(String)} and expect
- * the return value to be non-null. Instead just get the protocol and compare it to null.
- *
- * @param name The name to check for.
- * @return True if the named protocol is registered.
- */
- bool hasProtocol(const string &name) const;
-
- /**
* Returns the protocol whose name matches the given argument. This method will return null if no such
* protocol has been registered.
*