Skip to content

Commit c66f9d8

Browse files
committed
Javadoc update: ConfigurationClassPostProcessor is priority-ordered
Issue: SPR-17062 (cherry picked from commit 0b60447)
1 parent 4d3a899 commit c66f9d8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spring-context/src/main/java/org/springframework/context/annotation/ConfigurationClassPostProcessor.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
import org.springframework.util.Assert;
6565
import org.springframework.util.ClassUtils;
6666

67-
import static org.springframework.context.annotation.AnnotationConfigUtils.*;
67+
import static org.springframework.context.annotation.AnnotationConfigUtils.CONFIGURATION_BEAN_NAME_GENERATOR;
6868

6969
/**
7070
* {@link BeanFactoryPostProcessor} used for bootstrapping processing of
@@ -74,10 +74,10 @@
7474
* {@code <context:component-scan/>}. Otherwise, may be declared manually as
7575
* with any other BeanFactoryPostProcessor.
7676
*
77-
* <p>This post processor is {@link Ordered#HIGHEST_PRECEDENCE} as it is important
78-
* that any {@link Bean} methods declared in Configuration classes have their
79-
* respective bean definitions registered before any other BeanFactoryPostProcessor
80-
* executes.
77+
* <p>This post processor is priority-ordered as it is important that any
78+
* {@link Bean} methods declared in {@code @Configuration} classes have
79+
* their corresponding bean definitions registered before any other
80+
* {@link BeanFactoryPostProcessor} executes.
8181
*
8282
* @author Chris Beams
8383
* @author Juergen Hoeller

0 commit comments

Comments
 (0)