From 997de53f20e9b98538a367cc2c7061f979a47e89 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Fri, 26 Oct 2018 16:35:00 -0700 Subject: [PATCH] Remove uncessary call in PropertiesMigrationReport Closes gh-14974 --- .../context/properties/migrator/PropertiesMigrationReporter.java | 1 - 1 file changed, 1 deletion(-) diff --git a/spring-boot-project/spring-boot-properties-migrator/src/main/java/org/springframework/boot/context/properties/migrator/PropertiesMigrationReporter.java b/spring-boot-project/spring-boot-properties-migrator/src/main/java/org/springframework/boot/context/properties/migrator/PropertiesMigrationReporter.java index 813a0ac367..4c90120c42 100644 --- a/spring-boot-project/spring-boot-properties-migrator/src/main/java/org/springframework/boot/context/properties/migrator/PropertiesMigrationReporter.java +++ b/spring-boot-project/spring-boot-properties-migrator/src/main/java/org/springframework/boot/context/properties/migrator/PropertiesMigrationReporter.java @@ -174,7 +174,6 @@ class PropertiesMigrationReporter { private Map getPropertySourcesAsMap() { Map map = new LinkedHashMap<>(); - ConfigurationPropertySources.get(this.environment); for (ConfigurationPropertySource source : ConfigurationPropertySources .get(this.environment)) { map.put(determinePropertySourceName(source), source);