Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2021-08-27 22:33:06 +0300
committerHans Goudey <h.goudey@me.com>2021-08-27 22:33:06 +0300
commiteae4e225183991109a014b88775744187b8a77e3 (patch)
treed1abe1e8be97ee7f990a997385b5e5a211745128 /source/blender/blenloader
parent276a862ebc5629f45f672e7ca6b5ba55077c88f3 (diff)
Cleanup: Remove redundant null check
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/versioning_300.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/blenloader/intern/versioning_300.c b/source/blender/blenloader/intern/versioning_300.c
index 0253316dc3a..2456b22f046 100644
--- a/source/blender/blenloader/intern/versioning_300.c
+++ b/source/blender/blenloader/intern/versioning_300.c
@@ -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;