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 5ce46f35dc776356d0aa70aa716e00d990618176 Author: Gary Gregory <[email protected]> AuthorDate: Sat Jan 10 13:09:40 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/classfile/ConstantMethodref.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/bcel/classfile/ConstantMethodref.java b/src/main/java/org/apache/bcel/classfile/ConstantMethodref.java index d0eae0e1..08515d74 100644 --- a/src/main/java/org/apache/bcel/classfile/ConstantMethodref.java +++ b/src/main/java/org/apache/bcel/classfile/ConstantMethodref.java @@ -48,8 +48,10 @@ public final class ConstantMethodref extends ConstantCP { } /** - * @param classIndex Reference to the class containing the method - * @param nameAndTypeIndex and the method signature + * Constructs a ConstantMethodref. + * + * @param classIndex Reference to the class containing the method. + * @param nameAndTypeIndex and the method signature. */ public ConstantMethodref(final int classIndex, final int nameAndTypeIndex) { super(Const.CONSTANT_Methodref, classIndex, nameAndTypeIndex);
