processed date fix

This commit is contained in:
Timo Bejan 2022-03-19 19:45:10 +02:00
parent 4b73d3470a
commit c1317ee521

View File

@ -306,7 +306,6 @@ public class RedactionLogMergeService {
private boolean approvedAndShouldBeInDictionary(ManualRedactionEntry manualRedactionEntry) {
return manualRedactionEntry.getStatus().equals(AnnotationStatus.APPROVED) &&
manualRedactionEntry.getProcessedDate() != null &&
(manualRedactionEntry.isAddToDictionary() || manualRedactionEntry.isAddToDossierDictionary());
}