Formatting

This commit is contained in:
Phillip Webb 2015-07-09 10:18:05 -07:00
parent e344eece99
commit 67f7079cb2
2 changed files with 4 additions and 3 deletions

View File

@ -274,8 +274,8 @@ public class EndpointWebMvcAutoConfiguration implements ApplicationContextAware,
}
private static class OnManagementMvcCondition extends SpringBootCondition
implements ConfigurationCondition {
private static class OnManagementMvcCondition extends SpringBootCondition implements
ConfigurationCondition {
@Override
public ConfigurationPhase getConfigurationPhase() {

View File

@ -84,7 +84,8 @@ public class CacheAutoConfiguration {
@Override
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
throws BeansException {
for (String name : beanFactory.getBeanNamesForType(CacheAspectSupport.class, false, false)) {
for (String name : beanFactory.getBeanNamesForType(CacheAspectSupport.class,
false, false)) {
BeanDefinition definition = beanFactory.getBeanDefinition(name);
definition.setDependsOn(append(definition.getDependsOn(),
VALIDATOR_BEAN_NAME));