Revert "Core/DataStores: Implemented [] operator on DB2Storage (#20494)"

This reverts commit c8974a91a6.
This commit is contained in:
Shauren
2021-03-14 14:42:53 +01:00
parent d0246e5835
commit 47fc447bef

View File

@@ -95,7 +95,6 @@ public:
T const* LookupEntry(uint32 id) const { return (id >= _indexTableSize) ? nullptr : _indexTable.AsT[id]; }
T const* AssertEntry(uint32 id) const { return ASSERT_NOTNULL(LookupEntry(id)); }
T const* operator[](uint32 id) const { return LookupEntry(id); }
uint32 GetNumRows() const { return _indexTableSize; }
void Load(std::string const& path, LocaleConstant locale) override