Merge remote-tracking branch 'origin/patch'

This commit is contained in:
Ryan Kurtz
2026-05-20 04:33:30 -04:00
@@ -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);
}