Skip to content

Commit

Permalink
Change var name to be all caps
Browse files Browse the repository at this point in the history
  • Loading branch information
annieyang committed May 8, 2024
1 parent 784c960 commit 3c050ab
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*/
public final class AIMDLimit extends AbstractLimit {
private static final long DEFAULT_TIMEOUT = TimeUnit.SECONDS.toNanos(5);
private static final Logger log = LoggerFactory.getLogger(AIMDLimit.class);
private static final Logger LOG = LoggerFactory.getLogger(AIMDLimit.class);

public static class Builder {
private int minLimit = 20;
Expand Down Expand Up @@ -72,7 +72,7 @@ public Builder timeout(long timeout, TimeUnit units) {

public AIMDLimit build() {
if (initialLimit > maxLimit) {
log.warn("Initial limit {} exceeded maximum limit {}", initialLimit, maxLimit);
LOG.warn("Initial limit {} exceeded maximum limit {}", initialLimit, maxLimit);
}
return new AIMDLimit(this);
}
Expand Down

0 comments on commit 3c050ab

Please sign in to comment.