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