From c6efac87f508120bffb074c79e63711327ebec59 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Tue, 5 Nov 2013 09:02:43 +0000 Subject: [PATCH] Shorten field names a bit --- .../boot/autoconfigure/report/AutoConfigurationReport.java | 2 +- .../boot/autoconfigure/report/CreatedBeanInfo.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; }