Fix duplicate code warning from errorprone. This "else if" clause is the same as the "else" and can be removed

This commit is contained in:
Tim Donohue
2024-12-03 09:44:56 -06:00
parent abfb86b791
commit 52b3100776

View File

@@ -1445,8 +1445,6 @@ public class SolrServiceImpl implements SearchService, IndexingService {
} else {
return field + "_acid";
}
} else if (facetFieldConfig.getType().equals(DiscoveryConfigurationParameters.TYPE_STANDARD)) {
return field;
} else {
return field;
}