Pull request #95: RED-2695

Merge in RED/redaction-report-service from RED-2695-rrs1 to master

* commit '991049197aeabdc121acb9d04f01a0f21059640d':
  RED-2695 Small corrections in IUCLID report
This commit is contained in:
Ali Oezyetimoglu 2021-11-09 14:09:37 +01:00
commit 706d86a899

View File

@ -32,7 +32,7 @@ public class IuclidFunctionService {
Iterator<ReportRedactionEntry> iterator = entriesPerJustification.get(key).iterator();
while (iterator.hasNext()) {
ReportRedactionEntry entry = iterator.next();
s.append("p").append(entry.getPage());
s.append("P").append(entry.getPage());
s.append(" ").append(entry.getValue() != null ? entry.getValue() : "non-readable content");
if (iterator.hasNext()) {
s.append(", ");