Skip to content

Commit

Permalink
bump asm lib to fix bug with DUP_X2
Browse files Browse the repository at this point in the history
  • Loading branch information
EpicPlayerA10 committed Sep 10, 2024
1 parent f607aa4 commit e155334
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 16 deletions.
20 changes: 20 additions & 0 deletions deobfuscator-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,28 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<!-- Snapshot -->
<asm.version>9.8-20240908.112439-20</asm.version>

<log4j.version>2.23.1</log4j.version>
<slf4j.version>2.0.13</slf4j.version>
<kafedjud.version>1.10.2</kafedjud.version>
<ssvm.version>d559ea90bb</ssvm.version>
<jlinker.version>205d8eaa1f</jlinker.version>
</properties>

<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>ow2-repo</id>
<url>https://repository.ow2.org/nexus/content/repositories/snapshots</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>com.github.xxDark</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public MethodNode methodNode() {
}

/**
* Pops current instruction by adding POP instruction before this instruction
* Pops current instruction's stack values by adding POP instructions before this instruction
*
* @param count Stack values count to pop
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ private boolean isSourceValueRemovable(OriginalSourceValue sourceValue) {
}
if (!sourceValue.getChildren().isEmpty()) {
// Other source values depends on this source value
// Also there is a small bug https://gitlab.ow2.org/asm/asm/-/merge_requests/414
return false;
}

Expand Down
14 changes: 0 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,8 @@

<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>

<asm.version>9.7</asm.version>
<log4j.version>2.23.1</log4j.version>
<slf4j.version>2.0.13</slf4j.version>
<kafedjud.version>1.10.2</kafedjud.version>
<ssvm.version>d559ea90bb</ssvm.version>
<jlinker.version>205d8eaa1f</jlinker.version>
</properties>

<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.jetbrains</groupId>
Expand Down

0 comments on commit e155334

Please sign in to comment.