ItzSomebody / radon

[Abandoned] Scuffed java bytecode obfuscator
GNU General Public License v3.0
361 stars 74 forks source link

Fix hierarchy building #96

Closed MrExplode closed 3 years ago

MrExplode commented 3 years ago

ASM documentation says ClassNode#superName MAY be null for the superclass java.lang.Object.

In my experience it actually returned the said superclass' name, resulting in an incorrect hierarchy map, breaking the renamer transformer.

MrExplode commented 3 years ago

Concluded that this is not the best way to fix renamer class tree recursion issues.