summaryrefslogtreecommitdiff
path: root/src/mongo/db/catalog/collection_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/catalog/collection_impl.h')
-rw-r--r--src/mongo/db/catalog/collection_impl.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mongo/db/catalog/collection_impl.h b/src/mongo/db/catalog/collection_impl.h
index 9f561c77693..c87a3cf6352 100644
--- a/src/mongo/db/catalog/collection_impl.h
+++ b/src/mongo/db/catalog/collection_impl.h
@@ -64,14 +64,6 @@ public:
return _magic == kMagicNumber;
}
- CollectionInfoCache* infoCache() final {
- return _infoCache.get();
- }
-
- const CollectionInfoCache* infoCache() const final {
- return _infoCache.get();
- }
-
const NamespaceString& ns() const final {
return _ns;
}
@@ -387,7 +379,6 @@ private:
// The RecordStore may be null during a repair operation.
std::unique_ptr<RecordStore> _recordStore; // owned
const bool _needCappedLock;
- std::unique_ptr<CollectionInfoCache> _infoCache;
std::unique_ptr<IndexCatalog> _indexCatalog;