We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2a70a4 commit f2eecc3Copy full SHA for f2eecc3
src/main/java/org/kohsuke/github/GHRateLimit.java
@@ -345,7 +345,7 @@ public static class UnknownLimitRecord extends Record {
345
private static final UnknownLimitRecord DEFAULT = new UnknownLimitRecord(Long.MIN_VALUE);
346
347
// The starting current UnknownLimitRecord is an expired record.
348
- private static AtomicReference<UnknownLimitRecord> current = new AtomicReference<>(DEFAULT);
+ private static final AtomicReference<UnknownLimitRecord> current = new AtomicReference<>(DEFAULT);
349
350
/**
351
* Create a new unknown record that resets at the specified time.
0 commit comments