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

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

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

Reply via email to