mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Handle nested item comparisons, add Equals tests
This commit is contained in:
@@ -163,6 +163,11 @@ namespace SabreTools.Core
|
||||
return false;
|
||||
break;
|
||||
|
||||
case (ModelBackedItem selfMbi, ModelBackedItem otherMbi):
|
||||
if (!selfMbi.Equals(otherMbi))
|
||||
return false;
|
||||
break;
|
||||
|
||||
case (DictionaryBase selfDb, DictionaryBase otherDb):
|
||||
if (!selfDb.Equals(otherDb))
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user