Remove reference to ConfigurationPropertiesScan in javadoc

See gh-18920
This commit is contained in:
wonwoo 2019-11-08 00:26:38 +09:00 committed by Stephane Nicoll
parent 0490bff344
commit 92b00255a1
1 changed files with 2 additions and 3 deletions

View File

@ -37,9 +37,8 @@ import org.springframework.data.repository.Repository;
/** /**
* Indicates a {@link Configuration configuration} class that declares one or more * Indicates a {@link Configuration configuration} class that declares one or more
* {@link Bean @Bean} methods and also triggers {@link EnableAutoConfiguration * {@link Bean @Bean} methods and also triggers {@link EnableAutoConfiguration
* auto-configuration}, {@link ComponentScan component scanning}, and * auto-configuration} and {@link ComponentScan component scanning}. This is a convenience
* {@link ConfigurationPropertiesScan configuration properties scanning}. This is a * annotation that is equivalent to declaring {@code @Configuration},
* convenience annotation that is equivalent to declaring {@code @Configuration},
* {@code @EnableAutoConfiguration}, {@code @ComponentScan}. * {@code @EnableAutoConfiguration}, {@code @ComponentScan}.
* *
* @author Phillip Webb * @author Phillip Webb