From: aclement Date: Fri, 22 Apr 2005 16:15:44 +0000 (+0000) Subject: Changed runtime invis param attrs to always be invis as discovered by Alex. Was impac... X-Git-Tag: PRE_ANDY~449 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5f5ec77a5f5e5785167fec2fa8eab336834c39c4;p=aspectj.git 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! --- 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 { diff --git a/lib/bcel/bcel-src.zip b/lib/bcel/bcel-src.zip index 78c4fcf6a..752ae7d0a 100644 Binary files a/lib/bcel/bcel-src.zip and b/lib/bcel/bcel-src.zip differ diff --git a/lib/bcel/bcel.jar b/lib/bcel/bcel.jar index 089932c2d..ba6904a6f 100644 Binary files a/lib/bcel/bcel.jar and b/lib/bcel/bcel.jar differ