Skip to content

Commit

Permalink
Use a primitive type, no need to use a reference here (#5785)
Browse files Browse the repository at this point in the history
  • Loading branch information
sugmanue authored Jan 9, 2025
1 parent 6d179e6 commit ec9da22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public abstract class BaseRetryStrategy implements DefaultAwareRetryStrategy {
protected final int exceptionCost;
protected final TokenBucketStore tokenBucketStore;
protected final Set<String> defaultsAdded;
protected final Boolean useClientDefaults;
protected final boolean useClientDefaults;

BaseRetryStrategy(Logger log, Builder builder) {
this.log = log;
Expand Down

0 comments on commit ec9da22

Please sign in to comment.