Synchronizing on accessing a lock is pointless.

This commit is contained in:
dordsor21
2021-01-13 17:09:44 +00:00
parent f69b1bfb21
commit b1e8c6c3ba
2 changed files with 5 additions and 2 deletions

View File

@ -95,7 +95,7 @@ public class NMSRelighter implements Relighter {
}
@Override
public synchronized ReentrantLock getLock() {
public ReentrantLock getLock() {
return lightingLock;
}