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 cf6f3f0bf904adc87c1d6dd877d65e84bf193f53 Author: Gary Gregory <[email protected]> AuthorDate: Sat Jan 10 22:01:23 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/generic/StackInstruction.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/bcel/generic/StackInstruction.java b/src/main/java/org/apache/bcel/generic/StackInstruction.java index e676d312..917eb046 100644 --- a/src/main/java/org/apache/bcel/generic/StackInstruction.java +++ b/src/main/java/org/apache/bcel/generic/StackInstruction.java @@ -30,14 +30,19 @@ public abstract class StackInstruction extends Instruction { } /** - * @param opcode instruction opcode + * Constructs a StackInstruction. + * + * @param opcode instruction opcode. */ protected StackInstruction(final short opcode) { super(opcode, (short) 1); } /** - * @return Type.UNKNOWN + * Gets the type. + * + * @param cp the constant pool. + * @return Type.UNKNOWN. */ public Type getType(final ConstantPoolGen cp) { return Type.UNKNOWN;
