GP-6854 Corrected NPE in PropertyListMergeManager

This commit is contained in:
ghidra1
2026-05-19 17:25:53 -04:00
parent c2647f1296
commit 988fe4f54e
@@ -322,7 +322,7 @@ public class PropertyListMergeManager implements MergeResolver {
Object myValue = getValue(myList, propertyName);
Object origValue = getValue(origList, propertyName);
if (!myValue.equals(origValue)) {
if (!Objects.equals(myValue, origValue)) {
setValue(resultList, propertyName, myList.getType(propertyName), myValue);
}