aboutsummaryrefslogtreecommitdiffstats
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
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!
-rw-r--r--bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeInvisibleAnnotations.java2
-rw-r--r--lib/bcel/bcel-src.zipbin863737 -> 863736 bytes
-rw-r--r--lib/bcel/bcel.jarbin577109 -> 577084 bytes
3 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) {
diff --git a/lib/bcel/bcel-src.zip b/lib/bcel/bcel-src.zip
index bd9a81f55..78c4fcf6a 100644
--- a/lib/bcel/bcel-src.zip
+++ b/lib/bcel/bcel-src.zip
Binary files differ
diff --git a/lib/bcel/bcel.jar b/lib/bcel/bcel.jar
index af22d7fe2..089932c2d 100644
--- a/lib/bcel/bcel.jar
+++ b/lib/bcel/bcel.jar
Binary files differ