Target attributes update: Allow null values

Signed-off-by: Stefan Behl <stefan.behl@bosch-si.com>
This commit is contained in:
Stefan Behl
2018-08-01 09:14:00 +02:00
parent 6a0aa34c43
commit fa751c397b

View File

@@ -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 {