You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Method getRequiredBeanClassName of ConfigurationUtils has lost the placeholder for beanDefinition.
if result is null, The error message lost beanDefinition information.
publicstaticStringgetRequiredBeanClassName(BeanDefinitionbeanDefinition) {
Assert.notNull(beanDefinition, "BeanDefinition must not be null");
Stringresult = beanDefinition.getBeanClassName();
if (result == null) {
thrownewIllegalArgumentException(
// lose the placeholder for beanDefinitionString.format("Could not obtain required bean class name from BeanDefinition", beanDefinition));
}
returnresult;
}
The text was updated successfully, but these errors were encountered:
The Method
getRequiredBeanClassName
ofConfigurationUtils
has lost the placeholder forbeanDefinition
.if
result
is null, The error message lostbeanDefinition
information.The text was updated successfully, but these errors were encountered: