Remove accidentally committed debug sysout

This commit is contained in:
Phillip Webb
2019-10-02 16:04:50 -07:00
parent b1f23f54df
commit 9582aa3f3c

View File

@@ -54,7 +54,6 @@ class ConfigurationPropertiesBeanDefinitionValidator implements BeanFactoryPostP
private void validate(ConfigurableListableBeanFactory beanFactory, String beanName) {
Class<?> beanClass = beanFactory.getType(beanName, false);
System.out.println(beanName);
if (beanClass != null && BindMethod.forClass(beanClass) == BindMethod.VALUE_OBJECT) {
throw new BeanCreationException(beanName,
"@EnableConfigurationProperties or @ConfigurationPropertiesScan must be used to add "