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