Cleanup: Remove redundant null check

This commit is contained in:
Hans Goudey 2021-08-27 14:33:06 -05:00
parent 276a862ebc
commit eae4e22518
1 changed files with 0 additions and 3 deletions

View File

@ -252,9 +252,6 @@ static void do_versions_idproperty_ui_data(Main *bmain)
ID *id;
FOREACH_MAIN_ID_BEGIN (bmain, id) {
IDProperty *idprop_group = IDP_GetProperties(id, false);
if (idprop_group == NULL) {
continue;
}
version_idproperty_ui_data(idprop_group);
}
FOREACH_MAIN_ID_END;