Skip to content

Commit cb6540c

Browse files
authored
Core: Remove unnecessary class-level synchronized in ManifestFiles (#10544)
1 parent 5f970a8 commit cb6540c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/main/java/org/apache/iceberg/ManifestFiles.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ static ContentCache contentCache(FileIO io) {
8181
}
8282

8383
/** Drop manifest file cache object for a FileIO if exists. */
84-
public static synchronized void dropCache(FileIO fileIO) {
84+
public static void dropCache(FileIO fileIO) {
8585
CONTENT_CACHES.invalidate(fileIO);
8686
CONTENT_CACHES.cleanUp();
8787
}

0 commit comments

Comments
 (0)