diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/report/AutoConfigurationReport.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/report/AutoConfigurationReport.java index 9806b2a916..0d26ab7be5 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/report/AutoConfigurationReport.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/report/AutoConfigurationReport.java @@ -105,7 +105,7 @@ public class AutoConfigurationReport implements ApplicationContextAware, public Set> getBeanTypesCreated() { Set> beanTypesCreated = new HashSet>(); for (CreatedBeanInfo bootCreatedBeanInfo : this.getBeansCreated()) { - beanTypesCreated.add(bootCreatedBeanInfo.getBeanType()); + beanTypesCreated.add(bootCreatedBeanInfo.getType()); } return beanTypesCreated; } diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/report/CreatedBeanInfo.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/report/CreatedBeanInfo.java index 50b8b40fb2..ef8f11f13b 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/report/CreatedBeanInfo.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/report/CreatedBeanInfo.java @@ -46,7 +46,7 @@ public class CreatedBeanInfo { return this.name; } - public Class getBeanType() { + public Class getType() { return this.type; }