mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-12-28 20:17:55 +01:00
Fix concurrent errors in URLClassLoaderAccess (#3403)
This commit is contained in:
parent
a2e4a81e29
commit
1790c0ad47
@ -167,8 +167,10 @@ public abstract class URLClassLoaderAccess {
|
||||
URLClassLoaderAccess.throwError(new NullPointerException("unopenedURLs or pathURLs"));
|
||||
}
|
||||
|
||||
this.unopenedURLs.add(url);
|
||||
this.pathURLs.add(url);
|
||||
synchronized (this.unopenedURLs) {
|
||||
this.unopenedURLs.add(url);
|
||||
this.pathURLs.add(url);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user