Skip to content

Commit

Permalink
Make property final
Browse files Browse the repository at this point in the history
(cherry picked from commit 781a752)
  • Loading branch information
acogoluegnes committed Dec 13, 2024
1 parent 4cd11c3 commit 301e287
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public abstract class RefreshProtectedCredentialsProvider<T> implements Credenti

private final Lock refreshLock = new ReentrantLock();
private final AtomicReference<CountDownLatch> latch = new AtomicReference<>();
private AtomicBoolean refreshInProcess = new AtomicBoolean(false);
private final AtomicBoolean refreshInProcess = new AtomicBoolean(false);

@Override
public String getUsername() {
Expand Down

0 comments on commit 301e287

Please sign in to comment.