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

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

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

Reply via email to