Shorten field names a bit

pull/118/merge
Dave Syer 11 years ago
parent b19f6bb238
commit c6efac87f5

@ -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;
}

Loading…
Cancel
Save