mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
fix tests
This commit is contained in:
@@ -215,7 +215,8 @@ class BeanBinding extends Binding {
|
||||
return name;
|
||||
}
|
||||
}
|
||||
return aClass.getSimpleName();
|
||||
String name = aClass.getSimpleName();
|
||||
return name.isEmpty() ? aClass.getSuperclass().getSimpleName() : name;
|
||||
}
|
||||
|
||||
private static String getTagNameFromAnnotation(Class<?> aClass) {
|
||||
|
||||
Reference in New Issue
Block a user