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 b08b4aa9a86..233283ee054 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 @@ -100,14 +100,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;