mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
EA-61112 - IAE: CachedValuesManager.getCachedValue
This commit is contained in:
@@ -405,7 +405,10 @@ public class JavaFxPsiUtil {
|
||||
return null;
|
||||
}
|
||||
|
||||
public static String getDefaultPropertyName(PsiClass aClass) {
|
||||
public static String getDefaultPropertyName(@Nullable PsiClass aClass) {
|
||||
if (aClass == null) {
|
||||
return null;
|
||||
}
|
||||
final PsiAnnotation annotation = AnnotationUtil.findAnnotationInHierarchy(aClass,
|
||||
Collections.singleton(JavaFxCommonClassNames.JAVAFX_BEANS_DEFAULT_PROPERTY));
|
||||
if (annotation != null) {
|
||||
|
||||
Reference in New Issue
Block a user