From 1ec9721617a121bef1b19f104c3ace292800141c Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 27 Aug 2019 16:01:50 +0200 Subject: [PATCH] Fix @since tags in ScopedProxyUtils[Tests] See gh-23514 --- .../java/org/springframework/aop/scope/ScopedProxyUtils.java | 2 +- .../org/springframework/aop/scope/ScopedProxyUtilsTests.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-aop/src/main/java/org/springframework/aop/scope/ScopedProxyUtils.java b/spring-aop/src/main/java/org/springframework/aop/scope/ScopedProxyUtils.java index b087d9ab70..cc3d00da84 100644 --- a/spring-aop/src/main/java/org/springframework/aop/scope/ScopedProxyUtils.java +++ b/spring-aop/src/main/java/org/springframework/aop/scope/ScopedProxyUtils.java @@ -113,7 +113,7 @@ public abstract class ScopedProxyUtils { * @return the original bean name * @throws IllegalArgumentException if the supplied bean name does not refer * to the target of a scoped proxy - * @since 5.2 + * @since 5.1.10 * @see #getTargetBeanName(String) * @see #isScopedTarget(String) */ diff --git a/spring-aop/src/test/java/org/springframework/aop/scope/ScopedProxyUtilsTests.java b/spring-aop/src/test/java/org/springframework/aop/scope/ScopedProxyUtilsTests.java index 8b855c9b6b..b69616f497 100644 --- a/spring-aop/src/test/java/org/springframework/aop/scope/ScopedProxyUtilsTests.java +++ b/spring-aop/src/test/java/org/springframework/aop/scope/ScopedProxyUtilsTests.java @@ -25,7 +25,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException * Unit tests for {@link ScopedProxyUtils}. * * @author Sam Brannen - * @since 5.2 + * @since 5.1.10 */ class ScopedProxyUtilsTests {