Specify what lock types are considered in qhelp

This commit is contained in:
Owen Mansel-Chan
2026-01-27 15:39:03 +00:00
parent 516b84b59a
commit 42cbe0734e

View File

@@ -11,6 +11,11 @@ it multiple times, for example <code>java.util.concurrent.locks.ReentrantLock</c
then the number of locks must match the number of unlocks in order to fully
release the lock.
</p>
<p>
Any class that has both <code>lock</code> and <code>unlock</code> methods is
considered a lock type. However, classes with names ending in "Pool" are excluded,
as they typically manage a collection of resources.
</p>
</overview>
<recommendation>