@ -105,7 +105,7 @@ public class AutoConfigurationReport implements ApplicationContextAware,
public Set<Class<?>> getBeanTypesCreated() {
Set<Class<?>> beanTypesCreated = new HashSet<Class<?>>();
for (CreatedBeanInfo bootCreatedBeanInfo : this.getBeansCreated()) {
beanTypesCreated.add(bootCreatedBeanInfo.getBeanType());
beanTypesCreated.add(bootCreatedBeanInfo.getType());
}
return beanTypesCreated;
@ -46,7 +46,7 @@ public class CreatedBeanInfo {
return this.name;
public Class<?> getBeanType() {
public Class<?> getType() {
return this.type;