mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Fix broken netty util class check (#4357)
This commit is contained in:
parent
f3e56d282e
commit
32a8573651
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ public class GeyserSpigotPlugin extends JavaPlugin implements GeyserBootstrap {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Class.forName("io.netty.util.internal.ObjectPool.ObjectCreator");
|
Class.forName("io.netty.util.internal.ObjectPool$ObjectCreator");
|
||||||
} catch (ClassNotFoundException e) {
|
} catch (ClassNotFoundException e) {
|
||||||
getLogger().severe("*********************************************");
|
getLogger().severe("*********************************************");
|
||||||
getLogger().severe("");
|
getLogger().severe("");
|
||||||
|
|
Loading…
Reference in a new issue