if (codeMap.get(method) == null) {
return model;
}
final List<Instruction> code = ClassReflectionUtils
.computeInstructions(codeMap.get(method));
final LineNumberTable lineNumberTable = JavaClassProcessor
.getLineNumberTable(codeMap.get(method));
LineNumber[] lineNumbers = null;
if (lineNumberTable != null) {
lineNumbers = lineNumberTable.getLineNumberTable();
}
for (Instruction line : code) {
if (line instanceof InvokeInstruction) {
InvokeInstruction destInvokeInstruction = (InvokeInstruction) line;