Skip to content

Commit

Permalink
Fix potential lock when opening a new game while a resource contains …
Browse files Browse the repository at this point in the history
…unsaved data
  • Loading branch information
Argent77 committed Dec 9, 2024
1 parent 1cf5e11 commit 6ea86df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/infinity/resource/key/AbstractBIFFReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public enum Type {
* @return A BIFFReader object for accessing the BIFF archive.
* @throws IOException On error.
*/
public static synchronized AbstractBIFFReader open(Path file) throws Exception {
public static AbstractBIFFReader open(Path file) throws Exception {
return queryBIFFReader(file);
}

Expand Down

0 comments on commit 6ea86df

Please sign in to comment.