Skip to content

Commit

Permalink
Mark field parent as final and private
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Jan 2, 2025
1 parent f8857cd commit 2a11b48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class LockableImpl implements Lockable {
private final ReentrantLock concurrencyLock = new ReentrantLock( true );
private final Condition concurrencyCondition = concurrencyLock.newCondition();
private final HashMap<Transaction, Long> owners = new HashMap<>();
Lockable parent;
private final Lockable parent;

private boolean isExclusive = false;

Expand Down

0 comments on commit 2a11b48

Please sign in to comment.