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 a9da245859105c5a7c21510e9b836dda20c23166 Author: Gary Gregory <[email protected]> AuthorDate: Sat Jan 10 08:03:21 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/generic/CompoundInstruction.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/bcel/generic/CompoundInstruction.java b/src/main/java/org/apache/bcel/generic/CompoundInstruction.java index 69b974c2..f5421a89 100644 --- a/src/main/java/org/apache/bcel/generic/CompoundInstruction.java +++ b/src/main/java/org/apache/bcel/generic/CompoundInstruction.java @@ -31,5 +31,10 @@ package org.apache.bcel.generic; */ public interface CompoundInstruction { + /** + * Gets the instruction list. + * + * @return the instruction list. + */ InstructionList getInstructionList(); }
