From f68489dc1eccceeef4ad85e1eb5ad5e8704d8932 Mon Sep 17 00:00:00 2001 From: oreissig Date: Sat, 20 Aug 2016 14:46:14 +0200 Subject: [PATCH] implement removal of annotations --- .../bytecode/AnnotationsAttribute.java | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/main/javassist/bytecode/AnnotationsAttribute.java b/src/main/javassist/bytecode/AnnotationsAttribute.java index d1d5b988..c4d5f3de 100644 --- a/src/main/javassist/bytecode/AnnotationsAttribute.java +++ b/src/main/javassist/bytecode/AnnotationsAttribute.java @@ -213,6 +213,29 @@ public class AnnotationsAttribute extends AttributeInfo { setAnnotations(newlist); } + /** + * Removes an annotation by type. + * + * @param type of annotation to remove + * @return whether an annotation with the given type has been removed + */ + public boolean removeAnnotation(String type) { + Annotation[] annotations = getAnnotations(); + for (int i = 0; i < annotations.length; i++) { + if (annotations[i].getTypeName().equals(type)) { + Annotation[] newlist = new Annotation[annotations.length - 1]; + System.arraycopy(annotations, 0, newlist, 0, i); + if (i < annotations.length - 1) { + System.arraycopy(annotations, i + 1, newlist, i, + annotations.length - i - 1); + } + setAnnotations(newlist); + return true; + } + } + return false; + } + /** * Parses the annotations and returns a data structure representing * that parsed annotations. Note that changes of the node values of the -- 2.39.5