resources.report.rules.spotbugs.TLW_TWO_LOCK_WAIT.html Maven / Gradle / Ivy
TLW_TWO_LOCK_WAIT
TLW: Wait with two locks held (TLW_TWO_LOCK_WAIT)
Waiting on a monitor while two locks are held may cause
deadlock.
Performing a wait only releases the lock on the object
being waited on, not any other locks.
This not necessarily a bug, but is worth examining closely.