diff --git a/config/checkstyle/import-control.xml b/config/checkstyle/import-control.xml index bfae8dfa623..86eaac0edc5 100644 --- a/config/checkstyle/import-control.xml +++ b/config/checkstyle/import-control.xml @@ -17,6 +17,9 @@ + + + diff --git a/core/spring-boot/src/main/java/org/springframework/boot/env/EnvironmentPostProcessor.java b/core/spring-boot/src/main/java/org/springframework/boot/EnvironmentPostProcessor.java similarity index 90% rename from core/spring-boot/src/main/java/org/springframework/boot/env/EnvironmentPostProcessor.java rename to core/spring-boot/src/main/java/org/springframework/boot/EnvironmentPostProcessor.java index 3e2f741e43c..4a8e32b0a8d 100644 --- a/core/spring-boot/src/main/java/org/springframework/boot/env/EnvironmentPostProcessor.java +++ b/core/spring-boot/src/main/java/org/springframework/boot/EnvironmentPostProcessor.java @@ -14,9 +14,8 @@ * limitations under the License. */ -package org.springframework.boot.env; +package org.springframework.boot; -import org.springframework.boot.SpringApplication; import org.springframework.boot.bootstrap.BootstrapContext; import org.springframework.boot.bootstrap.BootstrapRegistry; import org.springframework.boot.bootstrap.ConfigurableBootstrapContext; @@ -34,8 +33,8 @@ import org.springframework.core.env.Environment; * interface or use an {@link org.springframework.core.annotation.Order @Order} annotation * if they wish to be invoked in specific order. *

- * Since Spring Boot 2.4, {@code EnvironmentPostProcessor} implementations may optionally - * take the following constructor parameters: + * {@code EnvironmentPostProcessor} implementations may optionally take the following + * constructor parameters: *