diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterService.java index 4cf30cb..c696d1d 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterService.java @@ -162,17 +162,6 @@ public class EntityLogConverterService { } - /* - This method catches types like hint_only or published_information - */ - private boolean isHintType(List types, String type) { - - var matchingTypes = getMatchingTypes(types, type); - Optional foundType = matchingTypes.stream().findFirst(); - return foundType.map(Type::isHint).orElse(false); - } - - private String getSection(EntityLogEntry entry, Position position) { if (StringUtils.isNotBlank(entry.getSection())) {