Use getMethodString() instead of combining separate parts in DeodexUtil.deodexerizeCode()

git-svn-id: https://smali.googlecode.com/svn/trunk@553 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2010-01-12 07:56:25 +00:00
parent 16a911620c
commit 096d4ec5ca

View File

@ -214,9 +214,7 @@ public class DeodexUtil {
} while (didSomething);
if (somethingLeftToDo) {
System.err.println("warning: could not fully deodex the method " +
codeItem.getParent().method.getContainingClass().getTypeDescriptor() + "->" +
codeItem.getParent().method.getMethodName() +
codeItem.getParent().method.getPrototype().getPrototypeString());
codeItem.getParent().method.getMethodString());
}
List<Instruction> instructions = new ArrayList<Instruction>(insns.size());