RED-5473: try to get redaction value
This commit is contained in:
parent
d345ba1fae
commit
c5a092990d
@ -383,9 +383,10 @@ public class ExcelReportGenerationService {
|
||||
return input -> input.getEntry().getExcerpt();
|
||||
}
|
||||
if (placeholder.equals(REDACTION_VALUE_PLACEHOLDER)) {
|
||||
// return input -> input.getEntry().getValue() != null ? input.getEntry().getValue().replaceAll("\n", " ").replaceAll(" ", " ") : "";
|
||||
//TODO: comment in above and delete down
|
||||
return input -> input.getEntry().getValue().replaceAll("\n", " ").replaceAll(" ", " ");
|
||||
// TODO: remove 2 lines
|
||||
Function<PlaceholderInput, String> aa = input -> input.getEntry().getValue().replaceAll("\n", " ").replaceAll(" ", " ");
|
||||
log.info("REDACTION_VALUE: {}", aa);
|
||||
return input -> input.getEntry().getValue() != null ? input.getEntry().getValue().replaceAll("\n", " ").replaceAll(" ", " ") : "";
|
||||
}
|
||||
if (placeholder.equals(REDACTION_ENTITY_DISPLAY_NAME_PLACEHOLDER)) {
|
||||
return input -> input.getEntry().getEntityDisplayName();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user