List<MethodNode> l = clazz.methods;
for (int k = 0, lim = l.size(); k < lim; k++) {
MethodNode m = l.get(k);
InsnList insn = m.instructions;
if (insn != null) {
insn.clear();
}
}
}
memDown(runtime);
System.out.println("ASM memory load (removed method code): ".concat(memFormat(getUsedMem(runtime)