-
Notifications
You must be signed in to change notification settings - Fork 75
Open
Description
with this example jar, obfuscate it with config disable all transform
package test;
public interface Inte {
int apply(int a);
}package test;
public class Abst {
public int apply(int a) {
return a + 3;
}
}package test;
public class Top extends Abst implements Inte {
public static void main(String[] args) {
Inte inte = new Top();
if (inte.apply(3) == 6) {
System.out.println("success");
} else {
System.out.println("failure");
}
}
}It will crash with
Exception in thread "main" java.lang.AbstractMethodError: Receiver class test.Top does not define or inherit an implementation of the resolved method 'abstract int apply$2137891494(int, int)' of interface test.Inte.
at test.Top.main(Top.java)
BTW, Gen3Flow can't be disabled maybe another issue
linked #57
Skidfuscator can't put test.Abst#apply test.Inte#apply into one group, may cause by this
Metadata
Metadata
Assignees
Labels
No labels