Polishing
This commit is contained in:
parent
51aaaae94e
commit
89b85c81a7
|
|
@ -1708,7 +1708,7 @@ public abstract class AbstractBeanFactory extends FactoryBeanRegistrySupport imp
|
|||
return ResolvableType.forClass(clazz);
|
||||
}
|
||||
throw new IllegalArgumentException("Invalid value type for attribute '" +
|
||||
FactoryBean.OBJECT_TYPE_ATTRIBUTE + "': " + attribute.getClass());
|
||||
FactoryBean.OBJECT_TYPE_ATTRIBUTE + "': " + attribute.getClass().getName());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -405,7 +405,7 @@ public class RootBeanDefinition extends AbstractBeanDefinition {
|
|||
return (Constructor<?>[]) attribute;
|
||||
}
|
||||
throw new IllegalArgumentException("Invalid value type for attribute '" +
|
||||
PREFERRED_CONSTRUCTORS_ATTRIBUTE + "': " + attribute.getClass());
|
||||
PREFERRED_CONSTRUCTORS_ATTRIBUTE + "': " + attribute.getClass().getName());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue