RED-4875 - reformat code

This commit is contained in:
Thomas Beyer 2023-03-22 13:04:51 +01:00
parent 5f542a31d5
commit 7437ed3ebc
2 changed files with 4 additions and 2 deletions

View File

@ -86,7 +86,6 @@ public class DownloadPreparationService {
}
String appliedRedactionColor = colorsService.getColors(dossier.getDossierTemplateId()).getAppliedRedactionColor();
RedactionMessage message = RedactionMessage.builder()
.dossierId(dossier.getId())
.downloadId(reportResultMessage.getDownloadId())

View File

@ -55,10 +55,13 @@ public class DossierTemplateModel {
@Schema(description = "Representing the setting if the metadata of images in pdfs should get kept, or removed")
private boolean keepImageMetadata;
@Schema(description = "Representing the setting if the hidden text in pdfs should get kept, or removed")
private boolean keepHiddenText;
public String getId(){
public String getId() {
return dossierTemplateId;
}