Remove FIXME

This commit is contained in:
Phillip Webb 2019-06-18 21:41:05 -07:00
parent 0233cc3c94
commit 59ca46ed54
1 changed files with 0 additions and 1 deletions

View File

@ -46,7 +46,6 @@ final class ConfigurationPropertiesBeanDefinition extends GenericBeanDefinition
private static <T> Supplier<T> createBean(ConfigurableListableBeanFactory beanFactory, String beanName,
Class<T> type) {
return () -> {
// FIXME review
ConfigurationProperties annotation = getAnnotation(type, ConfigurationProperties.class);
Validated validated = getAnnotation(type, Validated.class);
Annotation[] annotations = (validated != null) ? new Annotation[] { annotation, validated }