Target attributes update: Allow null values
Signed-off-by: Stefan Behl <stefan.behl@bosch-si.com>
This commit is contained in:
@@ -693,7 +693,7 @@ public class JpaControllerManagement implements ControllerManagement {
|
|||||||
if (src == null || src.isEmpty()) {
|
if (src == null || src.isEmpty()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
src.entrySet().stream().forEach(e -> {
|
src.entrySet().forEach(e -> {
|
||||||
if (e.getValue() != null) {
|
if (e.getValue() != null) {
|
||||||
trg.put(e.getKey(), e.getValue());
|
trg.put(e.getKey(), e.getValue());
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user