fix: don't rename constructors and class init methods in deobfuscator (#415)
This commit is contained in:
@@ -409,6 +409,9 @@ public class Deobfuscator {
|
||||
@Nullable
|
||||
private String getMethodAlias(MethodNode mth) {
|
||||
MethodInfo methodInfo = mth.getMethodInfo();
|
||||
if (methodInfo.isClassInit() || methodInfo.isConstructor()) {
|
||||
return null;
|
||||
}
|
||||
String alias = mthMap.get(methodInfo);
|
||||
if (alias != null) {
|
||||
return alias;
|
||||
|
||||
Reference in New Issue
Block a user