RED-7745 - Remove unused method to fix PMD violation

This commit is contained in:
Andrei Isvoran 2023-10-18 10:44:05 +03:00
parent f4b5600603
commit 514a0f6618

View File

@ -162,17 +162,6 @@ public class EntityLogConverterService {
}
/*
This method catches types like hint_only or published_information
*/
private boolean isHintType(List<Type> types, String type) {
var matchingTypes = getMatchingTypes(types, type);
Optional<Type> foundType = matchingTypes.stream().findFirst();
return foundType.map(Type::isHint).orElse(false);
}
private String getSection(EntityLogEntry entry, Position position) {
if (StringUtils.isNotBlank(entry.getSection())) {