...
Code Block | ||
---|---|---|
| ||
final Lock lock = new ReentrantLock(); lock.lock(); try { // ... } finally { lock.unlock(); } |
It is recommended to not use the intrinsic locks on Lock
or Condition
objects.
Noncompliant Code Example (collection view)
...
...
Code Block | ||
---|---|---|
| ||
final Lock lock = new ReentrantLock(); lock.lock(); try { // ... } finally { lock.unlock(); } |
It is recommended to not use the intrinsic locks on Lock
or Condition
objects.
...