summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mongo/db/namespace_string.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mongo/db/namespace_string.h b/src/mongo/db/namespace_string.h
index c42362ac632..dfcf6fe6af2 100644
--- a/src/mongo/db/namespace_string.h
+++ b/src/mongo/db/namespace_string.h
@@ -968,8 +968,6 @@ public:
: NamespaceStringOrUUID{static_cast<const NamespaceString&>(nss)} {}
NamespaceStringOrUUID(DatabaseName dbname, UUID uuid)
: _uuid(std::move(uuid)), _dbname(std::move(dbname)) {}
- NamespaceStringOrUUID(boost::optional<TenantId> tenantId, std::string db, UUID uuid)
- : _uuid(std::move(uuid)), _dbname(DatabaseName(std::move(tenantId), std::move(db))) {}
// TODO SERVER-65920 Remove once all call sites have been changed to take tenantId explicitly
NamespaceStringOrUUID(std::string db,
UUID uuid,