From 95c35e9655110c143cb7343cc6d4ec72367365d1 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Tue, 1 Jul 2025 18:00:59 +0200 Subject: [PATCH] Fix javadoc links to @Retryable See gh-34529 See gh-35133 --- .../org/springframework/resilience/retry/MethodRetrySpec.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-context/src/main/java/org/springframework/resilience/retry/MethodRetrySpec.java b/spring-context/src/main/java/org/springframework/resilience/retry/MethodRetrySpec.java index 014d7214216..6d85e9c3f66 100644 --- a/spring-context/src/main/java/org/springframework/resilience/retry/MethodRetrySpec.java +++ b/spring-context/src/main/java/org/springframework/resilience/retry/MethodRetrySpec.java @@ -23,7 +23,7 @@ import java.util.Collections; /** * A specification for retry attempts on a given method, combining common * retry characteristics. This roughly matches the annotation attributes - * on {@link org.springframework.aop.retry.annotation.Retryable}. + * on {@link org.springframework.resilience.annotation.Retryable}. * * @author Juergen Hoeller * @since 7.0 @@ -37,7 +37,7 @@ import java.util.Collections; * @param maxDelay the maximum delay for any retry attempt * @see AbstractRetryInterceptor#getRetrySpec * @see SimpleRetryInterceptor#SimpleRetryInterceptor(MethodRetrySpec) - * @see org.springframework.aop.retry.annotation.Retryable + * @see org.springframework.resilience.annotation.Retryable */ public record MethodRetrySpec( Collection> includes,