Skip to content

Commit 45ba4ac

Browse files
committed
Merge branch '6.2.x'
2 parents 0d39bb8 + 707b769 commit 45ba4ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultListableBeanFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2211,7 +2211,7 @@ protected boolean matchesBeanName(String beanName, @Nullable String candidateNam
22112211
* i.e. whether the candidate points back to the original bean or to a factory method
22122212
* on the original bean.
22132213
*/
2214-
@Contract("null, _ -> false;_, null -> false;")
2214+
@Contract("null, _ -> false; _, null -> false;")
22152215
private boolean isSelfReference(@Nullable String beanName, @Nullable String candidateName) {
22162216
return (beanName != null && candidateName != null &&
22172217
(beanName.equals(candidateName) || (containsBeanDefinition(candidateName) &&

0 commit comments

Comments
 (0)