Commit 5a7dece1 authored by Phillip Webb's avatar Phillip Webb

Formatting

parent 19056a11
...@@ -546,8 +546,8 @@ public class SpringApplication { ...@@ -546,8 +546,8 @@ public class SpringApplication {
} }
private Banner selectBanner(Environment environment) { private Banner selectBanner(Environment environment) {
String location = environment String location = environment.getProperty(BANNER_LOCATION_PROPERTY,
.getProperty(BANNER_LOCATION_PROPERTY, BANNER_LOCATION_PROPERTY_VALUE); BANNER_LOCATION_PROPERTY_VALUE);
ResourceLoader resourceLoader = this.resourceLoader != null ? this.resourceLoader ResourceLoader resourceLoader = this.resourceLoader != null ? this.resourceLoader
: new DefaultResourceLoader(getClassLoader()); : new DefaultResourceLoader(getClassLoader());
Resource resource = resourceLoader.getResource(location); Resource resource = resourceLoader.getResource(location);
......
...@@ -604,8 +604,6 @@ public class ConfigFileApplicationListener implements EnvironmentPostProcessor, ...@@ -604,8 +604,6 @@ public class ConfigFileApplicationListener implements EnvironmentPostProcessor,
static class ConfigurationPropertySources static class ConfigurationPropertySources
extends EnumerablePropertySource<Collection<PropertySource<?>>> { extends EnumerablePropertySource<Collection<PropertySource<?>>> {
private final Collection<PropertySource<?>> sources; private final Collection<PropertySource<?>> sources;
private final String[] names; private final String[] names;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment