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 90195f15d98602fed775bc44437e273c0cd26dc4
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jan 10 13:09:39 2026 -0500

    Javadoc
---
 src/main/java/org/apache/bcel/classfile/ConstantLong.java | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/bcel/classfile/ConstantLong.java 
b/src/main/java/org/apache/bcel/classfile/ConstantLong.java
index 647214b9..e53cf4f5 100644
--- a/src/main/java/org/apache/bcel/classfile/ConstantLong.java
+++ b/src/main/java/org/apache/bcel/classfile/ConstantLong.java
@@ -53,7 +53,9 @@ public final class ConstantLong extends Constant implements 
ConstantObject {
     }
 
     /**
-     * @param bytes Data
+     * Constructs a ConstantLong.
+     *
+     * @param bytes Data.
      */
     public ConstantLong(final long bytes) {
         super(Const.CONSTANT_Long);
@@ -84,14 +86,19 @@ public final class ConstantLong extends Constant implements 
ConstantObject {
     }
 
     /**
-     * @return data, i.e., 8 bytes.
+     * Gets the data.
+     *
+     * @return data, that is, 8 bytes.
      */
     public long getBytes() {
         return bytes;
     }
 
     /**
-     * @return Long object
+     * Gets the Long object.
+     *
+     * @param cp the constant pool (not used).
+     * @return Long object.
      */
     @Override
     public Object getConstantValue(final ConstantPool cp) {

Reply via email to