invokespecial shouldn't find deep for the method being invoked

This commit is contained in:
Adam
2015-08-09 20:50:06 -04:00
parent 399e5d8f8a
commit f8fe552287

View File

@@ -52,7 +52,7 @@ public class InvokeSpecial extends Instruction implements InvokeInstruction
if (otherClass == null)
return new ArrayList<>(); // not our class
info.sigterm.deob.Method other = otherClass.findMethodDeep(method.getNameAndType());
info.sigterm.deob.Method other = otherClass.findMethod(method.getNameAndType());
assert other != null;
List<info.sigterm.deob.Method> list = new ArrayList<>();