avoid NPEs in common Oaf merge utilities
This commit is contained in:
parent
5857fd38c1
commit
24a83fc24f
|
@ -270,8 +270,9 @@ public class MergeUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
HashMap<String, KeyValue> values = new HashMap<>();
|
HashMap<String, KeyValue> values = new HashMap<>();
|
||||||
left.forEach(kv -> values.put(kv.getKey(), kv));
|
|
||||||
right.forEach(kv -> values.putIfAbsent(kv.getKey(), kv));
|
Optional.ofNullable(left).ifPresent(l -> l.forEach(kv -> values.put(kv.getKey(), kv)));
|
||||||
|
Optional.ofNullable(right).ifPresent(r -> r.forEach(kv -> values.putIfAbsent(kv.getKey(), kv)));
|
||||||
|
|
||||||
return new ArrayList<>(values.values());
|
return new ArrayList<>(values.values());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue