Remove incorrect assertion in ConfigItem::ActivateItems

There is an assertion that after activating items, all these items are
active, which sounds reasonable at first. However, with concurrent API
queries, some of these could already be deleted and therefore be
deactivated again.
This commit is contained in:
Julian Brost 2021-01-13 14:43:40 +01:00
parent 986bedd9a0
commit e727675aaf
1 changed files with 0 additions and 11 deletions

View File

@ -697,17 +697,6 @@ bool ConfigItem::ActivateItems(const std::vector<ConfigItem::Ptr>& newItems, boo
}
}
#ifdef I2_DEBUG
for (const ConfigItem::Ptr& item : newItems) {
ConfigObject::Ptr object = item->m_Object;
if (!object)
continue;
ASSERT(object && object->IsActive());
}
#endif /* I2_DEBUG */
if (!silent)
Log(LogInformation, "ConfigItem", "Activated all objects.");