Fix Javadoc for FixedBackOff
Backport Bot / build (push) Waiting to run Details
Build and Deploy Snapshot / Build and Deploy Snapshot (push) Waiting to run Details
Build and Deploy Snapshot / Verify (push) Blocked by required conditions Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:false version:17], map[id:ubuntu-latest name:Linux]) (push) Waiting to run Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:true version:21], map[id:ubuntu-latest name:Linux]) (push) Waiting to run Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:true version:23], map[id:ubuntu-latest name:Linux]) (push) Waiting to run Details
Deploy Docs / Dispatch docs deployment (push) Waiting to run Details

This commit is contained in:
Sam Brannen 2025-06-14 15:33:04 +02:00
parent 8dee7d8fb6
commit 9f1aef16f9
1 changed files with 3 additions and 3 deletions

View File

@ -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;