From ea346d59b3b97b9bbbe7a3472307e5f9353065f3 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Sat, 7 Jun 2014 00:25:06 +0200 Subject: [PATCH] Polishing --- .../beans/factory/support/AbstractBeanFactory.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/spring-beans/src/main/java/org/springframework/beans/factory/support/AbstractBeanFactory.java b/spring-beans/src/main/java/org/springframework/beans/factory/support/AbstractBeanFactory.java index 279107726a..8fa8bc1b0a 100644 --- a/spring-beans/src/main/java/org/springframework/beans/factory/support/AbstractBeanFactory.java +++ b/spring-beans/src/main/java/org/springframework/beans/factory/support/AbstractBeanFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2013 the original author or authors. + * Copyright 2002-2014 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -124,7 +124,7 @@ public abstract class AbstractBeanFactory extends FactoryBeanRegistrySupport imp /** Resolution strategy for expressions in bean definition values */ private BeanExpressionResolver beanExpressionResolver; - /** Spring 3.0 ConversionService to use instead of PropertyEditors */ + /** Spring ConversionService to use instead of PropertyEditors */ private ConversionService conversionService; /** Custom PropertyEditorRegistrars to apply to the beans of this factory */ @@ -160,9 +160,7 @@ public abstract class AbstractBeanFactory extends FactoryBeanRegistrySupport imp private final Map mergedBeanDefinitions = new ConcurrentHashMap(64); - /** - * Names of beans that have already been created at least once - */ + /** Names of beans that have already been created at least once */ private final Set alreadyCreated = Collections.newSetFromMap(new ConcurrentHashMap(64)); /** Names of beans that are currently in creation */