From 2fe3c36cc2f0acc8b9a252c8ab99e67394097fc7 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Tue, 3 Jul 2018 17:54:43 +0200 Subject: [PATCH] Polishing --- .../beans/factory/support/DefaultListableBeanFactory.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultListableBeanFactory.java b/spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultListableBeanFactory.java index 552ab5a8501..68dd686043e 100644 --- a/spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultListableBeanFactory.java +++ b/spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultListableBeanFactory.java @@ -79,7 +79,7 @@ import org.springframework.util.ObjectUtils; import org.springframework.util.StringUtils; /** - * Default implementation of the + * Spring's default implementation of the * {@link org.springframework.beans.factory.ListableBeanFactory} and * {@link BeanDefinitionRegistry} interfaces: a full-fledged bean factory * based on bean definition objects. @@ -439,7 +439,7 @@ public class DefaultListableBeanFactory extends AbstractAutowireCapableBeanFacto if (allowEagerInit) { throw ex; } - // Probably contains a placeholder: let's ignore it for type matching purposes. + // Probably a class name with a placeholder: let's ignore it for type matching purposes. if (logger.isDebugEnabled()) { logger.debug("Ignoring bean class loading failure for bean '" + beanName + "'", ex); } @@ -449,7 +449,7 @@ public class DefaultListableBeanFactory extends AbstractAutowireCapableBeanFacto if (allowEagerInit) { throw ex; } - // Probably contains a placeholder: let's ignore it for type matching purposes. + // Probably some metadata with a placeholder: let's ignore it for type matching purposes. if (logger.isDebugEnabled()) { logger.debug("Ignoring unresolvable metadata in bean definition '" + beanName + "'", ex); }