This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-bcel.git
commit 9b7d12da08226b5ae9455fc5c425b1a1287bee85 Author: Gary David Gregory (Code signing key) <[email protected]> AuthorDate: Tue Nov 15 13:36:47 2022 -0500 Swap args --- src/main/java/org/apache/bcel/classfile/ConstantValue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/bcel/classfile/ConstantValue.java b/src/main/java/org/apache/bcel/classfile/ConstantValue.java index 580d26c7..dd5188b5 100644 --- a/src/main/java/org/apache/bcel/classfile/ConstantValue.java +++ b/src/main/java/org/apache/bcel/classfile/ConstantValue.java @@ -61,7 +61,7 @@ public final class ConstantValue extends Attribute { * @param constantPool Array of constants */ public ConstantValue(final int nameIndex, final int length, final int constantValueIndex, final ConstantPool constantPool) { - super(Const.ATTR_CONSTANT_VALUE, nameIndex, Args.require(2, length, "ConstantValue attribute length"), constantPool); + super(Const.ATTR_CONSTANT_VALUE, nameIndex, Args.require(length, 2, "ConstantValue attribute length"), constantPool); this.constantValueIndex = constantValueIndex; }
