fixed minor issue
This commit is contained in:
parent
e0e0404f44
commit
ba14eee6ef
@ -49,27 +49,26 @@ 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<>();
|
||||||
manualRedactions.getForceRedacts().forEach(item -> {
|
|
||||||
if (item.getSoftDeletedTime() != null) {
|
manualRedactions.getImageRecategorizations().forEach(item -> {
|
||||||
manualRedactionWrappers.add(new ManualRedactionWrapper(item.getId(), item.getRequestDate(), item));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
manualRedactions.getEntriesToAdd().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));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
manualRedactions.getIdsToRemove().forEach(item -> {
|
manualRedactions.getIdsToRemove().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));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
manualRedactions.getManualLegalBasisChanges().forEach(item -> {
|
|
||||||
|
manualRedactions.getForceRedacts().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));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
manualRedactions.getImageRecategorizations().forEach(item -> {
|
|
||||||
|
manualRedactions.getManualLegalBasisChanges().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));
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user