From 92b00255a1e5bbee096cffb74cfedab17990b256 Mon Sep 17 00:00:00 2001 From: wonwoo Date: Fri, 8 Nov 2019 00:26:38 +0900 Subject: [PATCH] Remove reference to ConfigurationPropertiesScan in javadoc See gh-18920 --- .../boot/autoconfigure/SpringBootApplication.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/SpringBootApplication.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/SpringBootApplication.java index b341032d68c5..2d5bf9589764 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/SpringBootApplication.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/SpringBootApplication.java @@ -37,9 +37,8 @@ /** * Indicates a {@link Configuration configuration} class that declares one or more * {@link Bean @Bean} methods and also triggers {@link EnableAutoConfiguration - * auto-configuration}, {@link ComponentScan component scanning}, and - * {@link ConfigurationPropertiesScan configuration properties scanning}. This is a - * convenience annotation that is equivalent to declaring {@code @Configuration}, + * auto-configuration} and {@link ComponentScan component scanning}. This is a convenience + * annotation that is equivalent to declaring {@code @Configuration}, * {@code @EnableAutoConfiguration}, {@code @ComponentScan}. * * @author Phillip Webb