This commit is contained in:
Timo Bejan 2021-08-13 13:49:22 +03:00
parent b1f73fb5b1
commit 25c355525c

View File

@ -50,6 +50,8 @@ public class RedactionLogMergeService {
private List<ManualRedactionWrapper> createManualRedactionWrappers(ManualRedactions manualRedactions) { private List<ManualRedactionWrapper> createManualRedactionWrappers(ManualRedactions manualRedactions) {
List<ManualRedactionWrapper> manualRedactionWrappers = new ArrayList<>(); List<ManualRedactionWrapper> manualRedactionWrappers = new ArrayList<>();
log.info("Processing Manual Redactions: {}",manualRedactions);
manualRedactions.getImageRecategorizations().forEach(item -> { manualRedactions.getImageRecategorizations().forEach(item -> {
if (item.getSoftDeletedTime() != null) { if (item.getSoftDeletedTime() != null) {
manualRedactionWrappers.add(new ManualRedactionWrapper(item.getId(), item.getRequestDate(), item)); manualRedactionWrappers.add(new ManualRedactionWrapper(item.getId(), item.getRequestDate(), item));