fix: Remove unneeded synchronized
keyword
This commit is contained in:
@@ -136,7 +136,7 @@ public class Frame {
|
||||
}
|
||||
}
|
||||
|
||||
private synchronized void close() {
|
||||
private void close() {
|
||||
synchronized (this) {
|
||||
image.close();
|
||||
}
|
||||
|
Reference in New Issue
Block a user