/* */ private void moveParameterAnnotations(int numParams, javassist.bytecode.MethodInfo src, javassist.bytecode.MethodInfo dest, String paramsTag)
/* */ {
/* 259 */ ParameterAnnotationsAttribute params = (ParameterAnnotationsAttribute)src.getAttribute(paramsTag);
/* 260 */ if (params != null)
/* */ {
/* 262 */ dest.addAttribute(params.copy(dest.getConstPool(), new HashMap()));
/* 263 */ ParameterAnnotationsAttribute srcParams = new ParameterAnnotationsAttribute(src.getConstPool(), paramsTag);
/* 264 */ Annotation[][] emptyParamAnnotations = new Annotation[numParams][];
/* 265 */ for (int i = 0; i < numParams; i++)
/* */ {
/* 267 */ emptyParamAnnotations[i] = new Annotation[0];