6868185: 2 JCK api/java_beans/Introspector/ tests fails starting from jdk7 b66
Reviewed-by: peterz
This commit is contained in:
parent
b339e0eaac
commit
e9e1f27be4
@ -52,8 +52,14 @@ public final class BeanInfoFinder
|
||||
}
|
||||
|
||||
@Override
|
||||
protected BeanInfo instantiate(Class<?> type, String name) {
|
||||
BeanInfo info = super.instantiate(type, name);
|
||||
protected BeanInfo instantiate(Class<?> type, String prefix, String name) {
|
||||
// this optimization will only use the BeanInfo search path
|
||||
// if is has changed from the original
|
||||
// or trying to get the ComponentBeanInfo
|
||||
BeanInfo info = !DEFAULT.equals(prefix) || "ComponentBeanInfo".equals(name)
|
||||
? super.instantiate(type, prefix, name)
|
||||
: null;
|
||||
|
||||
if (info != null) {
|
||||
// make sure that the returned BeanInfo matches the class
|
||||
BeanDescriptor bd = info.getBeanDescriptor();
|
||||
@ -89,14 +95,4 @@ public final class BeanInfoFinder
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected BeanInfo instantiate(Class<?> type, String prefix, String name) {
|
||||
// this optimization will only use the BeanInfo search path
|
||||
// if is has changed from the original
|
||||
// or trying to get the ComponentBeanInfo
|
||||
return !DEFAULT.equals(prefix) || "ComponentBeanInfo".equals(name)
|
||||
? super.instantiate(type, prefix, name)
|
||||
: null;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user