mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-24 12:17:26 +01:00
see #2241 skip Deleted Objects library while building object registry for deduplication
This commit is contained in:
parent
aaa2d1f318
commit
8faa985158
@ -320,6 +320,9 @@ void ObjectMaker::prepareForDeduplication(FWObject *root)
|
||||
registerObject(sig, root);
|
||||
}
|
||||
|
||||
if (Library::isA(root) && root->getId() == FWObjectDatabase::DELETED_OBJECTS_ID)
|
||||
return;
|
||||
|
||||
for (FWObject::iterator it=root->begin(); it!=root->end(); ++it)
|
||||
{
|
||||
prepareForDeduplication(*it);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user