Skip to content

Commit 9c62b1e

Browse files
committed
Polishing
1 parent 4cd3309 commit 9c62b1e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

spring-context/src/main/java/org/springframework/context/support/AbstractApplicationContext.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,7 @@ public abstract class AbstractApplicationContext extends DefaultResourceLoader
173173
private ConfigurableEnvironment environment;
174174

175175
/** BeanFactoryPostProcessors to apply on refresh */
176-
private final List<BeanFactoryPostProcessor> beanFactoryPostProcessors =
177-
new ArrayList<>();
176+
private final List<BeanFactoryPostProcessor> beanFactoryPostProcessors = new ArrayList<>();
178177

179178
/** System time in milliseconds when this context started */
180179
private long startupDate;
@@ -872,7 +871,7 @@ public String resolveStringValue(String strVal) {
872871
* {@link org.springframework.context.event.ContextRefreshedEvent}.
873872
*/
874873
protected void finishRefresh() {
875-
// Clear context-level resource caches (such as ASM metadata).
874+
// Clear context-level resource caches (such as ASM metadata from scanning).
876875
clearResourceCaches();
877876

878877
// Initialize lifecycle processor for this context.

0 commit comments

Comments
 (0)