Skip to content

Commit c242df1

Browse files
committed
lint fix
1 parent 57bfd19 commit c242df1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static Duration calculateRetryDelay(
7676
return retryAfterValue;
7777
}
7878

79-
// Otherwise, use exponential backoff with jitter, respecting minimum retry delay
79+
// Otherwise, use exponential backoff with jitter, respecting minimum retry delay
8080
Duration baseDelay = minimumRetryDelay != null ? minimumRetryDelay : Configuration.DEFAULT_MINIMUM_RETRY_DELAY;
8181
return ExponentialBackoff.calculateDelay(retryCount, baseDelay);
8282
}

0 commit comments

Comments
 (0)