Shorten field names a bit

This commit is contained in:
Dave Syer 2013-11-05 09:02:43 +00:00
parent b19f6bb238
commit c6efac87f5
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -46,7 +46,7 @@ public class CreatedBeanInfo {
return this.name;
}
public Class<?> getBeanType() {
public Class<?> getType() {
return this.type;
}