diff options
author | Mathias Stearn <mathias@10gen.com> | 2017-03-31 21:11:55 -0400 |
---|---|---|
committer | Mathias Stearn <mathias@10gen.com> | 2017-04-12 08:57:12 -0400 |
commit | 3c7f43bc2cf5419b4061bd55351a1894a0e32152 (patch) | |
tree | 6bb35fe4cc6444298e127af1eaeb3fa83f02495d /src/mongo/rpc/legacy_request.h | |
parent | c739baf5366cbd987bf61acc29a54f56e209a3b7 (diff) | |
download | mongo-3c7f43bc2cf5419b4061bd55351a1894a0e32152.tar.gz |
SERVER-28508 Delete unused DocumentRange rpc cruft
Diffstat (limited to 'src/mongo/rpc/legacy_request.h')
-rw-r--r-- | src/mongo/rpc/legacy_request.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mongo/rpc/legacy_request.h b/src/mongo/rpc/legacy_request.h index 9312c59639d..f943114e358 100644 --- a/src/mongo/rpc/legacy_request.h +++ b/src/mongo/rpc/legacy_request.h @@ -31,7 +31,6 @@ #include "mongo/base/string_data.h" #include "mongo/db/dbmessage.h" #include "mongo/db/jsobj.h" -#include "mongo/rpc/document_range.h" #include "mongo/rpc/protocol.h" #include "mongo/rpc/request_interface.h" @@ -76,18 +75,6 @@ public: */ const BSONObj& getCommandArgs() const final; - /** - * A variable number of BSON documents to pass to the command. It is valid for - * the returned range to be empty. - * - * Example usage: - * - * for (auto&& doc : req.getInputDocs()) { - * ... do stuff with doc - * } - */ - DocumentRange getInputDocs() const final; - Protocol getProtocol() const final; private: |