Skip to content

Commit 590371f

Browse files
committed
limit visibilty
1 parent b397d21 commit 590371f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/dev/openfga/sdk/util/ExponentialBackoff.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static Duration calculateDelay(int retryCount) {
5151
* @param random Random instance to use for jitter calculation
5252
* @return Duration representing the delay before the next retry
5353
*/
54-
public static Duration calculateDelay(int retryCount, Random random) {
54+
static Duration calculateDelay(int retryCount, Random random) {
5555
if (retryCount < 0) {
5656
return Duration.ZERO;
5757
}

0 commit comments

Comments
 (0)