Skip to content

Commit cb287e4

Browse files
committed
fix(all): update asm + version tweak
1 parent ce19ee1 commit cb287e4

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

dev.skidfuscator.client.standalone/src/main/java/dev/skidfuscator/obfuscator/command/ObfuscateCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public Integer call() {
141141
" │ " + topMemory + " │",
142142
" └───────────────────────────────────────────┘",
143143
"",
144-
" Author: Ghast Version: 2.0.7 Today: "
144+
" Author: Ghast Version: 2.0.8 Today: "
145145
+ DateFormat.getDateTimeInstance().format(new Date(Instant.now().toEpochMilli())),
146146
""
147147
};

dev.skidfuscator.obfuscator/src/test/java/dev/skidfuscator/test/SampleJarTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ public void test2() throws Exception {
7272
System.out.println(skidfuscator.getClassRemapper());
7373
final String name = skidfuscator
7474
.getClassRemapper()
75-
.map(Type.getObjectType("dev/sim0n/evaluator/Main").getInternalName());
75+
.map(Type.getObjectType("dev/sim0n/app/Main").getInternalName());
7676
System.out.println("Found named " + name);
77-
final String replaced = name == null ? "dev.sim0n.evaluator.Main" : name.replace("/", ".");
77+
final String replaced = name == null ? "dev.sim0n.app.Main" : name.replace("/", ".");
7878
final Class<?> clazz = classLoader.loadClass(replaced);
7979
clazz.getDeclaredMethod("main", String[].class).invoke(null, (Object) new String[0]);
8080
}

org.mapleir.parent/org.mapleir.modasm/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ plugins {
44

55
dependencies {
66
api project(':stdlib')
7-
api 'org.ow2.asm:asm:9.5'
8-
api 'org.ow2.asm:asm-tree:9.5'
9-
api 'org.ow2.asm:asm-util:9.5'
10-
api 'org.ow2.asm:asm-commons:9.5'
7+
api 'org.ow2.asm:asm:9.6'
8+
api 'org.ow2.asm:asm-tree:9.6'
9+
api 'org.ow2.asm:asm-util:9.6'
10+
api 'org.ow2.asm:asm-commons:9.6'
1111
}
1212

1313
group = 'dev.skidfuscator.mapleir'

0 commit comments

Comments
 (0)