RED-161: reverse caseSensitive

This commit is contained in:
cheng 2020-07-23 10:50:57 +02:00
parent c276ebd951
commit a34ef04fc3

View File

@ -211,7 +211,7 @@ public class AnnotationHighlightService {
private boolean isHint(Entity entity) {
List<String> hintTypes = dictionaryService.getHintTypes();
if (!CollectionUtils.isEmpty(hintTypes) && hintTypes.contains(entity.getType())) {
if (CollectionUtils.isNotEmpty(hintTypes) && hintTypes.contains(entity.getType())) {
return true;
}
return false;