mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-09-03 19:07:56 +00:00
Make IDAssigner.getNextID synchronized
This should prevent race conditions when allocating IDs. Fixes #386.
This commit is contained in:
@@ -36,7 +36,7 @@ public final class IDAssigner
|
||||
return getNextID( file, false );
|
||||
}
|
||||
|
||||
private static int getNextID( File location, boolean directory )
|
||||
private static synchronized int getNextID( File location, boolean directory )
|
||||
{
|
||||
// Determine where to locate ID file
|
||||
File lastIdFile;
|
||||
|
Reference in New Issue
Block a user