fix for Dalvik instruction generation

This commit is contained in:
Julian Dolby 2018-09-11 13:36:29 -04:00
parent 49628fdf44
commit e85f01b2b3
1 changed files with 1 additions and 1 deletions

View File

@ -1730,7 +1730,7 @@ public class DexIMethod implements IBytecodeMethod<Instruction> {
String cname = ((org.jf.dexlib2.iface.reference.MethodReference)((Instruction3rc)inst).getReference()).getDefiningClass();
String mname = ((org.jf.dexlib2.iface.reference.MethodReference)((Instruction3rc)inst).getReference()).getName();
String pname = ((org.jf.dexlib2.iface.reference.MethodReference)((Instruction3rc)inst).getReference()).getReturnType();
String pname = DexUtil.getSignature((org.jf.dexlib2.iface.reference.MethodReference)((Instruction3rc)inst).getReference());
if (cname.endsWith(";"))
cname = cname.substring(0,cname.length()-1);