Skip to content

Commit 349314c

Browse files
committed
Mark INSTANCE_NUMBER final
1 parent 3064ede commit 349314c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/coreoz/securelogin/DelayedCompleter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* needs to check the item at the head of the queue.
2020
*/
2121
public final class DelayedCompleter implements AutoCloseable {
22-
private static AtomicInteger INSTANCE_NUMBER = new AtomicInteger(1);
22+
private static final AtomicInteger INSTANCE_NUMBER = new AtomicInteger(1);
2323

2424
/**
2525
* A record to hold a future and its target completion time.

0 commit comments

Comments
 (0)