From f2a541511185dd960852d15b87fd18524dfc312b Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Wed, 27 Feb 2019 16:41:00 +0100 Subject: [PATCH] Fix CheckStyle violations See gh-2060 --- .../springframework/beans/factory/support/AutowireUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-beans/src/main/java/org/springframework/beans/factory/support/AutowireUtils.java b/spring-beans/src/main/java/org/springframework/beans/factory/support/AutowireUtils.java index eb0187f9c4..38d9169126 100644 --- a/spring-beans/src/main/java/org/springframework/beans/factory/support/AutowireUtils.java +++ b/spring-beans/src/main/java/org/springframework/beans/factory/support/AutowireUtils.java @@ -304,8 +304,8 @@ public abstract class AutowireUtils { * {@code null}) * @param parameterIndex the index of the parameter in the constructor or method * that declares the parameter - * @see #resolveDependency * @since 5.2 + * @see #resolveDependency */ public static boolean isAutowirable(Parameter parameter, int parameterIndex) { Assert.notNull(parameter, "Parameter must not be null"); @@ -339,11 +339,11 @@ public abstract class AutowireUtils { * the dependency (must not be {@code null}) * @return the resolved object, or {@code null} if none found * @throws BeansException if dependency resolution failed + * @since 5.2 * @see #isAutowirable * @see Autowired#required * @see SynthesizingMethodParameter#forExecutable(Executable, int) * @see AutowireCapableBeanFactory#resolveDependency(DependencyDescriptor, String) - * @since 5.2 */ @Nullable public static Object resolveDependency( -- GitLab