From 68e07eba5cfae127161c612b24354b5e513429cc Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Mon, 4 Nov 2013 23:58:40 -0800 Subject: [PATCH] Minor formatting polish --- .../autoconfigure/report/AutoConfigurationReport.java | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 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 193a670198..7a7ca18bb7 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 @@ -39,9 +39,9 @@ import org.springframework.context.event.ContextRefreshedEvent; import org.springframework.util.ClassUtils; /** - * Bean used to gather autoconfiguration decisions, and then generate a collection of info - * for beans that were created as well as situations where the conditional outcome was - * negative. + * Bean used to gather auto-configuration decisions, and then generate a collection of + * info for beans that were created as well as situations where the conditional outcome + * was negative. * * @author Greg Turnquist * @author Dave Syer @@ -54,10 +54,15 @@ public class AutoConfigurationReport implements ApplicationContextAware, private static Log logger = LogFactory.getLog(AutoConfigurationReport.class); private Set beansCreated = new LinkedHashSet(); + private Map> autoconfigurationDecisions = new LinkedHashMap>(); + private Map> positive = new LinkedHashMap>(); + private Map> negative = new LinkedHashMap>(); + private ConfigurableApplicationContext context; + private boolean initialized = false; public static void registerDecision(ConditionContext context, String message,