mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-23 00:51:01 +03:00
[FIX] Copy-paste shit
This commit is contained in:
parent
908bd1cb76
commit
8d098108d0
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ public Path process(Path inputJar) throws IOException {
|
||||||
new ClassReader(IOHelper.getResourceBytes(AutogenConfig.class.getName().replace('.', '/').concat(".class"))).accept(cn, 0);
|
new ClassReader(IOHelper.getResourceBytes(AutogenConfig.class.getName().replace('.', '/').concat(".class"))).accept(cn, 0);
|
||||||
LauncherConfigurator launcherConfigurator = new LauncherConfigurator(cn);
|
LauncherConfigurator launcherConfigurator = new LauncherConfigurator(cn);
|
||||||
ClassNode cn1 = new ClassNode();
|
ClassNode cn1 = new ClassNode();
|
||||||
new ClassReader(IOHelper.getResourceBytes(SecureAutogenConfig.class.getName().replace('.', '/').concat(".class"))).accept(cn, 0);
|
new ClassReader(IOHelper.getResourceBytes(SecureAutogenConfig.class.getName().replace('.', '/').concat(".class"))).accept(cn1, 0);
|
||||||
ConfigGenerator secureConfigurator = new ConfigGenerator(cn1);
|
ConfigGenerator secureConfigurator = new ConfigGenerator(cn1);
|
||||||
BuildContext context = new BuildContext(output, launcherConfigurator, this);
|
BuildContext context = new BuildContext(output, launcherConfigurator, this);
|
||||||
server.buildHookManager.hook(context);
|
server.buildHookManager.hook(context);
|
||||||
|
|
Loading…
Reference in a new issue