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 a3c071a98f187b92254a0213f8be32382d072f9c Author: Gary Gregory <[email protected]> AuthorDate: Sat Jan 10 13:17:49 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/classfile/ConstantLong.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/bcel/classfile/ConstantLong.java b/src/main/java/org/apache/bcel/classfile/ConstantLong.java index e53cf4f5..5d5a44a6 100644 --- a/src/main/java/org/apache/bcel/classfile/ConstantLong.java +++ b/src/main/java/org/apache/bcel/classfile/ConstantLong.java @@ -106,7 +106,9 @@ public final class ConstantLong extends Constant implements ConstantObject { } /** - * @param bytes the raw bytes that represent this long + * Sets the raw bytes that represent the long value. + * + * @param bytes the raw bytes that represent the long value. */ public void setBytes(final long bytes) { this.bytes = bytes;
