This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[23:36:38] [org.jackhuang.hmcl.Launcher.main/INFO] *** HMCL 3.2.136 *** | |
[23:36:38] [org.jackhuang.hmcl.Launcher.main/INFO] Operating System: Windows 10 10.0 | |
[23:36:38] [org.jackhuang.hmcl.Launcher.main/INFO] Java Version: 1.8.0_221, Oracle Corporation | |
[23:36:38] [org.jackhuang.hmcl.Launcher.main/INFO] Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation | |
[23:36:38] [org.jackhuang.hmcl.Launcher.main/INFO] Java Home: C:\Program Files\Java\jdk1.8.0_221\jre | |
[23:36:38] [org.jackhuang.hmcl.Launcher.main/INFO] Current Directory: D:\Games\Minecraft\SevTech_Ages | |
[23:36:38] [org.jackhuang.hmcl.Launcher.main/INFO] HMCL Directory: C:\Users\ZekerZhayard\AppData\Roaming\.hmcl | |
[23:36:38] [org.jackhuang.hmcl.Launcher.main/INFO] Memory: 5444MB | |
[23:36:38] [org.jackhuang.hmcl.Launcher.lambda$main$2/INFO] Metaspace: 7MB | |
[23:36:39] [org.jackhuang.hmcl.ui.Controllers.initialize/INFO] Start initializing application |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.github.zekerzhayard.custom_earlyloading_screen; | |
import java.lang.invoke.MethodHandles; | |
import java.lang.reflect.Field; | |
import java.net.URLClassLoader; | |
import sun.misc.Unsafe; | |
public class Constants { | |
public final static Unsafe UNSAFE; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.github.zekerzhayard.wrappertest; | |
import java.io.File; | |
import java.lang.invoke.MethodHandles; | |
import java.lang.invoke.MethodType; | |
import java.lang.module.Configuration; | |
import java.lang.module.ModuleDescriptor; | |
import java.lang.module.ModuleFinder; | |
import java.lang.module.ModuleReference; | |
import java.lang.module.ResolvedModule; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Without MixinGradle | |
// Add below contents to the end of your build.gradle | |
configurations { | |
library | |
implementation.extendsFrom library | |
} | |
repositories { | |
maven { url = "https://repo.spongepowered.org/repository/maven-public/" } | |
} | |
dependencies { |