Skip to content

Commit 1725866

Browse files
committed
Style: add space after if in condition
Minor formatting change in DependencyAnalysisBeanFactoryListener: add a space between 'if' and '(' when checking logger.isTraceEnabled(). No functional change; improves code readability.
1 parent 0a3f139 commit 1725866

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

microsphere-spring-context/src/main/java/io/microsphere/spring/context/event/DependencyAnalysisBeanFactoryListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ private List<BeanDefinitionHolder> getNonLazyInitSingletonMergedBeanDefinitionHo
358358
for (int i = 0; i < beansCount; i++) {
359359
String beanName = beanNames[i];
360360
if (beanFactory.containsSingleton(beanName)) {
361-
if(logger.isTraceEnabled()) {
361+
if (logger.isTraceEnabled()) {
362362
logger.trace("The Bean[name : '{}'] is ready", beanName);
363363
}
364364
continue;

0 commit comments

Comments
 (0)