From ec2064d981c4c3eb988dc0196a8405b9b56d3cbc Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Thu, 17 Dec 2015 09:40:36 +0000 Subject: [PATCH] Remove TODO See gh-4796 --- .../properties/ConfigurationPropertiesBindingPostProcessor.java | 1 - 1 file changed, 1 deletion(-) diff --git a/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessor.java b/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessor.java index 8b8f2bacec..c68acd7618 100644 --- a/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessor.java +++ b/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessor.java @@ -232,7 +232,6 @@ public class ConfigurationPropertiesBindingPostProcessor PropertySourcesPlaceholderConfigurer configurer = getSinglePropertySourcesPlaceholderConfigurer(); if (configurer != null) { // Flatten the sources into a single list so they can be iterated - // TODO: maybe we don't really need this (and it has lifecycle implications) return new FlatPropertySources(configurer.getAppliedPropertySources()); } if (this.environment instanceof ConfigurableEnvironment) {