RED-6098: Changed check for skipped entries in report for not having Ignored Hints and Removed published information
This commit is contained in:
parent
9b40679d77
commit
409437fbd6
@ -82,7 +82,7 @@ public class RedactionLogConverterService {
|
||||
List<ReportRedactionEntry> reportEntries = new ArrayList<>();
|
||||
|
||||
redactionLog.getRedactionLogEntry().forEach(entry -> {
|
||||
var isSkipped = !entry.isRedacted() && !entry.isHint() && !entry.isManuallyRemoved();
|
||||
var isSkipped = !entry.isRedacted() && !entry.isHint() && !entry.getType().equals("hint_only") && !entry.getType().equals("published_information");
|
||||
if (entry.isRedacted() || isSkipped) {
|
||||
|
||||
if (entry.lastChangeIsRemoved()) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user