Skip to content

Commit daf1b3d

Browse files
committed
Remove unnecessary downcast to DefaultListableBeanFactory
See gh-33920 See gh-25952
1 parent a48897a commit daf1b3d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2023 the original author or authors.
2+
* Copyright 2002-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -39,7 +39,6 @@
3939
import org.springframework.beans.factory.support.BeanDefinitionReader;
4040
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
4141
import org.springframework.beans.factory.support.BeanNameGenerator;
42-
import org.springframework.beans.factory.support.DefaultListableBeanFactory;
4342
import org.springframework.beans.factory.support.RootBeanDefinition;
4443
import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
4544
import org.springframework.context.annotation.ConfigurationCondition.ConfigurationPhase;
@@ -318,7 +317,7 @@ protected boolean isOverriddenByExistingDefinition(BeanMethod beanMethod, String
318317

319318
// At this point, it's a top-level override (probably XML), just having been parsed
320319
// before configuration class processing kicks in...
321-
if (this.registry instanceof DefaultListableBeanFactory dlbf && !dlbf.isBeanDefinitionOverridable(beanName)) {
320+
if (!this.registry.isBeanDefinitionOverridable(beanName)) {
322321
throw new BeanDefinitionStoreException(beanMethod.getConfigurationClass().getResource().getDescription(),
323322
beanName, "@Bean definition illegally overridden by existing bean definition: " + existingBeanDef);
324323
}

0 commit comments

Comments
 (0)