Skip to content

Commit f2a5415

Browse files
committed
Fix CheckStyle violations
See gh-2060
1 parent 40da78e commit f2a5415

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-beans/src/main/java/org/springframework/beans/factory/support/AutowireUtils.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,8 @@ else if (arg instanceof TypedStringValue) {
304304
* {@code null})
305305
* @param parameterIndex the index of the parameter in the constructor or method
306306
* that declares the parameter
307-
* @see #resolveDependency
308307
* @since 5.2
308+
* @see #resolveDependency
309309
*/
310310
public static boolean isAutowirable(Parameter parameter, int parameterIndex) {
311311
Assert.notNull(parameter, "Parameter must not be null");
@@ -339,11 +339,11 @@ public static boolean isAutowirable(Parameter parameter, int parameterIndex) {
339339
* the dependency (must not be {@code null})
340340
* @return the resolved object, or {@code null} if none found
341341
* @throws BeansException if dependency resolution failed
342+
* @since 5.2
342343
* @see #isAutowirable
343344
* @see Autowired#required
344345
* @see SynthesizingMethodParameter#forExecutable(Executable, int)
345346
* @see AutowireCapableBeanFactory#resolveDependency(DependencyDescriptor, String)
346-
* @since 5.2
347347
*/
348348
@Nullable
349349
public static Object resolveDependency(

0 commit comments

Comments
 (0)