Skip to content

Commit

Permalink
fix(all): update asm + version tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
terminalsin committed Dec 13, 2023
1 parent ce19ee1 commit cb287e4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public Integer call() {
" │ " + topMemory + " │",
" └───────────────────────────────────────────┘",
"",
" Author: Ghast Version: 2.0.7 Today: "
" Author: Ghast Version: 2.0.8 Today: "
+ DateFormat.getDateTimeInstance().format(new Date(Instant.now().toEpochMilli())),
""
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ public void test2() throws Exception {
System.out.println(skidfuscator.getClassRemapper());
final String name = skidfuscator
.getClassRemapper()
.map(Type.getObjectType("dev/sim0n/evaluator/Main").getInternalName());
.map(Type.getObjectType("dev/sim0n/app/Main").getInternalName());
System.out.println("Found named " + name);
final String replaced = name == null ? "dev.sim0n.evaluator.Main" : name.replace("/", ".");
final String replaced = name == null ? "dev.sim0n.app.Main" : name.replace("/", ".");
final Class<?> clazz = classLoader.loadClass(replaced);
clazz.getDeclaredMethod("main", String[].class).invoke(null, (Object) new String[0]);
}
Expand Down
8 changes: 4 additions & 4 deletions org.mapleir.parent/org.mapleir.modasm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ plugins {

dependencies {
api project(':stdlib')
api 'org.ow2.asm:asm:9.5'
api 'org.ow2.asm:asm-tree:9.5'
api 'org.ow2.asm:asm-util:9.5'
api 'org.ow2.asm:asm-commons:9.5'
api 'org.ow2.asm:asm:9.6'
api 'org.ow2.asm:asm-tree:9.6'
api 'org.ow2.asm:asm-util:9.6'
api 'org.ow2.asm:asm-commons:9.6'
}

group = 'dev.skidfuscator.mapleir'
Expand Down

0 comments on commit cb287e4

Please sign in to comment.