fix: Remove unneeded synchronized keyword

This commit is contained in:
Marc Rousavy
2024-01-18 20:02:48 +01:00
committed by GitHub
parent bae1f52d4a
commit f400487a8d

View File

@@ -136,7 +136,7 @@ public class Frame {
}
}
private synchronized void close() {
private void close() {
synchronized (this) {
image.close();
}