/* */ private void moveAnnotations(javassist.bytecode.MethodInfo src, javassist.bytecode.MethodInfo dest, String annotationTag)
/* */ {
/* 249 */ AnnotationsAttribute attribute = (AnnotationsAttribute)src.getAttribute(annotationTag);
/* 250 */ if (attribute != null)
/* */ {
/* 252 */ dest.addAttribute(attribute.copy(dest.getConstPool(), new HashMap()));
/* 253 */ src.addAttribute(new AnnotationsAttribute(src.getConstPool(), annotationTag));
/* */ }
/* */ }
/* */
/* */ private void moveParameterAnnotations(int numParams, javassist.bytecode.MethodInfo src, javassist.bytecode.MethodInfo dest, String paramsTag)