diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/service/components/ComponentLogCreatorService.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/service/components/ComponentLogCreatorService.java index 34d4f70d..981b8bee 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/service/components/ComponentLogCreatorService.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/service/components/ComponentLogCreatorService.java @@ -51,7 +51,7 @@ public class ComponentLogCreatorService { for (ComponentDefinition componentDefinition : componentDefinitions) { String technicalName = componentDefinition.getTechnicalName().toLowerCase(Locale.ROOT); if (!existingComponentNames.contains(technicalName)) { - componentLogEntries.add(new ComponentLogEntry(componentDefinition.getDisplayName(), null, false)); + componentLogEntries.add(new ComponentLogEntry(componentDefinition.getDisplayName(), new ArrayList<>(), false)); } }