Cleanup: else-after-return

This commit is contained in:
Jacques Lucke 2021-08-25 16:00:28 +02:00
parent 0fd1e6a5f4
commit 796035ad93
1 changed files with 1 additions and 3 deletions

View File

@ -83,7 +83,5 @@ ImBuf *IMB_thumb_load_blend(const char *blen_path, const char *blen_group, const
if (blen_group && blen_id) {
return imb_thumb_load_from_blend_id(blen_path, blen_group, blen_id);
}
else {
return imb_thumb_load_from_blendfile(blen_path);
}
return imb_thumb_load_from_blendfile(blen_path);
}