Skip to content

Commit 95c35e9

Browse files
committed
Fix javadoc links to @retryable
See gh-34529 See gh-35133
1 parent 95a6a0c commit 95c35e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-context/src/main/java/org/springframework/resilience/retry/MethodRetrySpec.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* A specification for retry attempts on a given method, combining common
2525
* retry characteristics. This roughly matches the annotation attributes
26-
* on {@link org.springframework.aop.retry.annotation.Retryable}.
26+
* on {@link org.springframework.resilience.annotation.Retryable}.
2727
*
2828
* @author Juergen Hoeller
2929
* @since 7.0
@@ -37,7 +37,7 @@
3737
* @param maxDelay the maximum delay for any retry attempt
3838
* @see AbstractRetryInterceptor#getRetrySpec
3939
* @see SimpleRetryInterceptor#SimpleRetryInterceptor(MethodRetrySpec)
40-
* @see org.springframework.aop.retry.annotation.Retryable
40+
* @see org.springframework.resilience.annotation.Retryable
4141
*/
4242
public record MethodRetrySpec(
4343
Collection<Class<? extends Throwable>> includes,

0 commit comments

Comments
 (0)