diff options
author | aclement <aclement> | 2005-04-22 16:15:44 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-04-22 16:15:44 +0000 |
commit | 5f5ec77a5f5e5785167fec2fa8eab336834c39c4 (patch) | |
tree | 230c4dc354cf9971173c4813693f189b070c9477 /bcel-builder | |
parent | 5edfef30ff4c24b2c00e98ebd884a29e0c76d163 (diff) | |
download | aspectj-5f5ec77a5f5e5785167fec2fa8eab336834c39c4.tar.gz aspectj-5f5ec77a5f5e5785167fec2fa8eab336834c39c4.zip |
Changed runtime invis param 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')
2 files changed, 2 insertions, 2 deletions
diff --git a/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeInvisibleParameterAnnotations.java b/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeInvisibleParameterAnnotations.java index 9665dd6a2..9d5a2ff7b 100644 --- a/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeInvisibleParameterAnnotations.java +++ b/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeInvisibleParameterAnnotations.java @@ -21,7 +21,7 @@ public class RuntimeInvisibleParameterAnnotations extends RuntimeParameterAnnota } public RuntimeInvisibleParameterAnnotations(int nameIndex, int len, byte[] rvaData,ConstantPool cpool) { - super(Constants.ATTR_RUNTIME_INVISIBLE_PARAMETER_ANNOTATIONS,true,nameIndex,len,rvaData,cpool); + super(Constants.ATTR_RUNTIME_INVISIBLE_PARAMETER_ANNOTATIONS,false,nameIndex,len,rvaData,cpool); } public void accept(Visitor v) { diff --git a/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeVisibleParameterAnnotations.java b/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeVisibleParameterAnnotations.java index b57068bc1..2da812920 100644 --- a/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeVisibleParameterAnnotations.java +++ b/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/RuntimeVisibleParameterAnnotations.java @@ -16,7 +16,7 @@ public class RuntimeVisibleParameterAnnotations extends RuntimeParameterAnnotati public RuntimeVisibleParameterAnnotations(int nameIndex, int len, byte[] rvaData,ConstantPool cpool) { super(Constants.ATTR_RUNTIME_VISIBLE_PARAMETER_ANNOTATIONS,true,nameIndex,len,rvaData,cpool); - } + } public RuntimeVisibleParameterAnnotations(int nameIdx, int len, DataInputStream dis,ConstantPool cpool) throws IOException { |