From 13a43e76cb35dd805616d53db33b2e512dc954be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deleuze?= Date: Wed, 8 Jul 2026 20:46:17 +0200 Subject: [PATCH] Fix Javadoc error in RetryPolicy See gh-36983 --- .../main/java/org/springframework/core/retry/RetryPolicy.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/core/retry/RetryPolicy.java b/spring-core/src/main/java/org/springframework/core/retry/RetryPolicy.java index d166899d854..adb92e90148 100644 --- a/spring-core/src/main/java/org/springframework/core/retry/RetryPolicy.java +++ b/spring-core/src/main/java/org/springframework/core/retry/RetryPolicy.java @@ -169,9 +169,8 @@ public interface RetryPolicy { public static final long DEFAULT_MAX_DELAY = Long.MAX_VALUE; /** - * The default {@linkplain #timeout(Duration) timeout}: {@value}. + * The default {@linkplain #timeout(Duration) timeout}: {@link Duration#ZERO}. * @since 7.0.9 - * @see Duration#ZERO */ public static final Duration DEFAULT_TIMEOUT = Duration.ZERO;