RED-161: reverse caseSensitive
This commit is contained in:
parent
c276ebd951
commit
a34ef04fc3
@ -211,7 +211,7 @@ public class AnnotationHighlightService {
|
|||||||
|
|
||||||
private boolean isHint(Entity entity) {
|
private boolean isHint(Entity entity) {
|
||||||
List<String> hintTypes = dictionaryService.getHintTypes();
|
List<String> hintTypes = dictionaryService.getHintTypes();
|
||||||
if (!CollectionUtils.isEmpty(hintTypes) && hintTypes.contains(entity.getType())) {
|
if (CollectionUtils.isNotEmpty(hintTypes) && hintTypes.contains(entity.getType())) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user