protected String toStringMethod(byte[] classdata, String methodname, boolean quoted) {
OutputStream os = new SimpleOutputStream();
// ClassReader reader = new ClassReader(classdata);
MethodNode one = getMethod(classdata, methodname);
one.instructions.accept(new MethodPrinter(new PrintStream(os)));
String s = os.toString();
StringBuffer sb = new StringBuffer(s.replaceAll("\r", ""));
if (!quoted) {
return sb.toString();
}