Polish "Remove reference to ConfigurationPropertiesScan in javadoc"

See gh-18920
This commit is contained in:
Stephane Nicoll 2019-11-08 11:10:14 +01:00
parent 92b00255a1
commit 08067fb816
1 changed files with 1 additions and 2 deletions

View File

@ -25,7 +25,6 @@ import java.lang.annotation.Target;
import org.springframework.boot.SpringBootConfiguration;
import org.springframework.boot.context.TypeExcludeFilter;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.ComponentScan.Filter;
@ -39,7 +38,7 @@ import org.springframework.data.repository.Repository;
* {@link Bean @Bean} methods and also triggers {@link EnableAutoConfiguration
* auto-configuration} and {@link ComponentScan component scanning}. This is a convenience
* annotation that is equivalent to declaring {@code @Configuration},
* {@code @EnableAutoConfiguration}, {@code @ComponentScan}.
* {@code @EnableAutoConfiguration} and {@code @ComponentScan}.
*
* @author Phillip Webb
* @author Stephane Nicoll