This commit is contained in:
Timo Bejan 2021-09-28 15:03:38 +03:00
parent d299df23bb
commit 96edce3738
3 changed files with 1 additions and 3 deletions

View File

@ -10,7 +10,6 @@ import lombok.NoArgsConstructor;
@Builder
@NoArgsConstructor
@AllArgsConstructor
@SuppressFBWarnings("RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE")
public class DigitalSignature {
private String id;

View File

@ -10,7 +10,6 @@ import lombok.NoArgsConstructor;
@Builder
@AllArgsConstructor
@NoArgsConstructor
@SuppressFBWarnings("RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE")
public class SMTPConfiguration {
private String id;

View File

@ -25,7 +25,7 @@ public class RedactionLogService {
if (withManualRedactions) {
var dossier = dossierPersistenceService.getAndValidateDossier(dossierId);
var manualRedactions = manualRedactionService.getManualRedactions(fileId);
// var manualRedactions = manualRedactionService.getManualRedactions(fileId);
var fileStatus = fileStatusService.getStatus( fileId);
return redactionClient.getRedactionLog(RedactionRequest.builder()
.dossierId(dossierId)