Shorten field names a bit
This commit is contained in:
parent
b19f6bb238
commit
c6efac87f5
|
|
@ -105,7 +105,7 @@ public class AutoConfigurationReport implements ApplicationContextAware,
|
||||||
public Set<Class<?>> getBeanTypesCreated() {
|
public Set<Class<?>> getBeanTypesCreated() {
|
||||||
Set<Class<?>> beanTypesCreated = new HashSet<Class<?>>();
|
Set<Class<?>> beanTypesCreated = new HashSet<Class<?>>();
|
||||||
for (CreatedBeanInfo bootCreatedBeanInfo : this.getBeansCreated()) {
|
for (CreatedBeanInfo bootCreatedBeanInfo : this.getBeansCreated()) {
|
||||||
beanTypesCreated.add(bootCreatedBeanInfo.getBeanType());
|
beanTypesCreated.add(bootCreatedBeanInfo.getType());
|
||||||
}
|
}
|
||||||
return beanTypesCreated;
|
return beanTypesCreated;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ public class CreatedBeanInfo {
|
||||||
return this.name;
|
return this.name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Class<?> getBeanType() {
|
public Class<?> getType() {
|
||||||
return this.type;
|
return this.type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue