Remove uncessary call in PropertiesMigrationReport

Closes gh-14974
This commit is contained in:
Phillip Webb
2018-10-26 16:35:00 -07:00
parent 236bd856f6
commit 997de53f20

View File

@@ -174,7 +174,6 @@ class PropertiesMigrationReporter {
private Map<String, ConfigurationPropertySource> getPropertySourcesAsMap() {
Map<String, ConfigurationPropertySource> map = new LinkedHashMap<>();
ConfigurationPropertySources.get(this.environment);
for (ConfigurationPropertySource source : ConfigurationPropertySources
.get(this.environment)) {
map.put(determinePropertySourceName(source), source);