Skip to content

Commit

Permalink
QF
Browse files Browse the repository at this point in the history
  • Loading branch information
nixel2007 committed Jul 17, 2020
1 parent f13b574 commit 9202a75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/github/_1c_syntax/utils/Lazy.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@

public final class Lazy<T> {

private Supplier<T> supplier;
private ReentrantLock lock;
private final Supplier<T> supplier;
private final ReentrantLock lock;
private volatile T value;

public Lazy(Supplier<T> supplier) {
Expand Down

0 comments on commit 9202a75

Please sign in to comment.