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()) {
|
||||
return;
|
||||
}
|
||||
src.entrySet().stream().forEach(e -> {
|
||||
src.entrySet().forEach(e -> {
|
||||
if (e.getValue() != null) {
|
||||
trg.put(e.getKey(), e.getValue());
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user