From ce39146be8889409898264b8a9389d3d1f0d4258 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Thu, 13 Feb 2014 01:08:35 +0100 Subject: [PATCH] Polishing --- .../beans/factory/support/ConstructorResolver.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/spring-beans/src/main/java/org/springframework/beans/factory/support/ConstructorResolver.java b/spring-beans/src/main/java/org/springframework/beans/factory/support/ConstructorResolver.java index 1c7fe6303d..0e6aa32702 100644 --- a/spring-beans/src/main/java/org/springframework/beans/factory/support/ConstructorResolver.java +++ b/spring-beans/src/main/java/org/springframework/beans/factory/support/ConstructorResolver.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. @@ -54,12 +54,9 @@ import org.springframework.util.ReflectionUtils; import org.springframework.util.StringUtils; /** - * Helper class for resolving constructors and factory methods. + * Delegate for resolving constructors and factory methods. * Performs constructor resolution through argument matching. * - *

Operates on an {@link AbstractBeanFactory} and an {@link InstantiationStrategy}. - * Used by {@link AbstractAutowireCapableBeanFactory}. - * * @author Juergen Hoeller * @author Rob Harrop * @author Mark Fisher