summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/dbcommands.cpp
diff options
context:
space:
mode:
authorBilly Donahue <billy.donahue@mongodb.com>2018-03-23 16:15:42 -0400
committerBilly Donahue <billy.donahue@mongodb.com>2018-03-27 14:25:37 -0400
commit2f9566aefb7edf9e03c187ed092c0427655816ec (patch)
tree5e1470d6cd19654cff89f22cf8bf2834276d4fa3 /src/mongo/db/commands/dbcommands.cpp
parente6503239af00e7a7a5848ed7784142ac904e4218 (diff)
downloadmongo-2f9566aefb7edf9e03c187ed092c0427655816ec.tar.gz
SERVER-30775 remove dbname from CommandHelpers::parseNsFullyQualified
Diffstat (limited to 'src/mongo/db/commands/dbcommands.cpp')
-rw-r--r--src/mongo/db/commands/dbcommands.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/commands/dbcommands.cpp b/src/mongo/db/commands/dbcommands.cpp
index 15187ac16e4..ef40fe96ce3 100644
--- a/src/mongo/db/commands/dbcommands.cpp
+++ b/src/mongo/db/commands/dbcommands.cpp
@@ -676,7 +676,7 @@ public:
class CmdDatasize : public ErrmsgCommandDeprecated {
virtual string parseNs(const string& dbname, const BSONObj& cmdObj) const {
- return CommandHelpers::parseNsFullyQualified(dbname, cmdObj);
+ return CommandHelpers::parseNsFullyQualified(cmdObj);
}
public: