/* 332 */ String desc = deleInfo.getDescriptor();
/* 333 */ ConstPool cp = declaring.getClassFile2().getConstPool();
/* 334 */ MethodInfo minfo = new MethodInfo(cp, methodName, desc);
/* 335 */ minfo.setAccessFlags(deleInfo.getAccessFlags());
/* */
/* 337 */ ExceptionsAttribute eattr = deleInfo.getExceptionsAttribute();
/* 338 */ if (eattr != null) {
/* 339 */ minfo.setExceptionsAttribute((ExceptionsAttribute)eattr.copy(cp, null));
/* */ }
/* */
/* 342 */ Bytecode code = new Bytecode(cp, 0, 0);
/* 343 */ boolean isStatic = Modifier.isStatic(delegate.getModifiers());
/* 344 */ CtClass deleClass = delegate.getDeclaringClass();