Skip to content

Commit cd81381

Browse files
committed
style: Improve code readability by adjusting else statement formatting
Signed-off-by: KNU-K <[email protected]>
1 parent 2ab2869 commit cd81381

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,8 @@ private boolean processBeanDefinition(List<String> result, String beanName, Root
688688

689689
if (!isFactoryBean) {
690690
return processRegularBean(beanName, mbd, dbd, type, includeNonSingletons, allowFactoryBeanInit);
691-
} else {
691+
}
692+
else {
692693
return processFactoryBean(result, beanName, mbd, dbd, type, includeNonSingletons, allowFactoryBeanInit, isNonLazyDecorated);
693694
}
694695
}

0 commit comments

Comments
 (0)