aboutsummaryrefslogtreecommitdiffstats
path: root/bcel-builder
diff options
context:
space:
mode:
authoraclement <aclement>2005-04-22 16:13:38 +0000
committeraclement <aclement>2005-04-22 16:13:38 +0000
commit5edfef30ff4c24b2c00e98ebd884a29e0c76d163 (patch)
treef2971c54930f0956fac527eb9e2eccf67eba9bf3 /bcel-builder
parentcbc9fa978e3f5b6e1068e44143109d295cbdc139 (diff)
downloadaspectj-5edfef30ff4c24b2c00e98ebd884a29e0c76d163.tar.gz
aspectj-5edfef30ff4c24b2c00e98ebd884a29e0c76d163.zip
Changed runtime invis attrs to always be invis as discovered by Alex. Was impacting nothing as far as I could tell - but needed fixing!
Diffstat (limited to 'bcel-builder')
-rw-r--r--bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeInvisibleAnnotations.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeInvisibleAnnotations.java b/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeInvisibleAnnotations.java
index 626b48c65..ab638438e 100644
--- a/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeInvisibleAnnotations.java
+++ b/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeInvisibleAnnotations.java
@@ -22,7 +22,7 @@ public class RuntimeInvisibleAnnotations extends RuntimeAnnotations {
}
public RuntimeInvisibleAnnotations(int nameIndex, int len, byte[] rvaData,ConstantPool cpool) {
- super(Constants.ATTR_RUNTIME_INVISIBLE_ANNOTATIONS,true,nameIndex,len,rvaData,cpool);
+ super(Constants.ATTR_RUNTIME_INVISIBLE_ANNOTATIONS,false,nameIndex,len,rvaData,cpool);
}
public void accept(Visitor v) {