squid:S2325 - private methods that don't access instance data should be static
This commit is contained in:
@ -89,7 +89,7 @@ public class ReaderWriterLock implements ReadWriteLock {
|
||||
return globalMutex.isEmpty();
|
||||
}
|
||||
|
||||
private void waitUninterruptibly(Object o) {
|
||||
private static void waitUninterruptibly(Object o) {
|
||||
try {
|
||||
o.wait();
|
||||
} catch (InterruptedException e) {
|
||||
|
Reference in New Issue
Block a user