From 9f1aef16f9edfe6216b22169774c3527b797ce19 Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Sat, 14 Jun 2025 15:33:04 +0200 Subject: [PATCH] Fix Javadoc for FixedBackOff --- .../java/org/springframework/util/backoff/FixedBackOff.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/util/backoff/FixedBackOff.java b/spring-core/src/main/java/org/springframework/util/backoff/FixedBackOff.java index 9695077362b..db21fc2e9f5 100644 --- a/spring-core/src/main/java/org/springframework/util/backoff/FixedBackOff.java +++ b/spring-core/src/main/java/org/springframework/util/backoff/FixedBackOff.java @@ -49,7 +49,7 @@ public class FixedBackOff implements BackOff { } /** - * Create an instance. + * Create an instance with the supplied settings. * @param interval the interval between two attempts * @param maxAttempts the maximum number of attempts */ @@ -74,14 +74,14 @@ public class FixedBackOff implements BackOff { } /** - * Set the maximum number of attempts in milliseconds. + * Set the maximum number of attempts. */ public void setMaxAttempts(long maxAttempts) { this.maxAttempts = maxAttempts; } /** - * Return the maximum number of attempts in milliseconds. + * Return the maximum number of attempts. */ public long getMaxAttempts() { return this.maxAttempts;