diff options
author | syeyoung <cyoung06@naver.com> | 2022-11-19 23:05:02 +0900 |
---|---|---|
committer | syeyoung <cyoung06@naver.com> | 2022-11-19 23:05:02 +0900 |
commit | 93517ec3723f93886f2869e50e95ffa51a65377e (patch) | |
tree | 322ad5aa0a063df467706e28d2a79dd632354db8 /loader | |
parent | 10fec893e40816f7c09100dce3eff4d25028ef28 (diff) | |
download | Skyblock-Dungeons-Guide-93517ec3723f93886f2869e50e95ffa51a65377e.tar.gz Skyblock-Dungeons-Guide-93517ec3723f93886f2869e50e95ffa51a65377e.tar.bz2 Skyblock-Dungeons-Guide-93517ec3723f93886f2869e50e95ffa51a65377e.zip |
- Why does worldclient have separate entity list
- do not exit hypixel when reloading dg
- GC please
Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'loader')
-rw-r--r-- | loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/loader/LocalLoader.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/loader/LocalLoader.java b/loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/loader/LocalLoader.java index 1264c7ee..42d27b76 100644 --- a/loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/loader/LocalLoader.java +++ b/loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/loader/LocalLoader.java @@ -90,7 +90,7 @@ public class LocalLoader implements IDGLoader { classLoader.cleanup(); classLoader = null; dgInterface = null; - System.gc();// pls do + System.gc(); // pls do Reference<? extends ClassLoader> t = refQueue.poll(); if (t == null) throw new DungeonsGuideUnloadingException("Reference Leaked"); // Why do you have to be that strict? Well, to tell them to actually listen on DungeonsGuideReloadListener. If it starts causing issues then I will remove check cus it's not really loaded (classes are loaded by child classloader) t.clear(); |