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 55e8e3d07cedaed289bc7887b647078e356ab877 Author: Gary Gregory <[email protected]> AuthorDate: Sat Jan 10 22:50:23 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/generic/FCONST.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/bcel/generic/FCONST.java b/src/main/java/org/apache/bcel/generic/FCONST.java index a4e87c60..8dac2023 100644 --- a/src/main/java/org/apache/bcel/generic/FCONST.java +++ b/src/main/java/org/apache/bcel/generic/FCONST.java @@ -36,6 +36,11 @@ public class FCONST extends Instruction implements ConstantPushInstruction { this(0); } + /** + * Constructs an FCONST instruction. + * + * @param f the float value. + */ public FCONST(final float f) { super(org.apache.bcel.Const.FCONST_0, (short) 1); if (f == 0.0) {
