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 8488cec6e9a19992669a3acdf5ceabae4d1d5095 Author: Gary Gregory <[email protected]> AuthorDate: Fri Jan 9 15:02:35 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/generic/BranchHandle.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/org/apache/bcel/generic/BranchHandle.java b/src/main/java/org/apache/bcel/generic/BranchHandle.java index 51e561ff..b0a3d303 100644 --- a/src/main/java/org/apache/bcel/generic/BranchHandle.java +++ b/src/main/java/org/apache/bcel/generic/BranchHandle.java @@ -54,6 +54,8 @@ public final class BranchHandle extends InstructionHandle { } /** + * Gets the target of instruction. + * * @return target of instruction. */ public InstructionHandle getTarget() { @@ -81,6 +83,8 @@ public final class BranchHandle extends InstructionHandle { /** * Pass new target to instruction. + * + * @param ih the new target. */ public void setTarget(final InstructionHandle ih) { bi.setTarget(ih); @@ -95,6 +99,9 @@ public final class BranchHandle extends InstructionHandle { /** * Update target of instruction. + * + * @param oldIh the old instruction handle. + * @param newIh the new instruction handle. */ public void updateTarget(final InstructionHandle oldIh, final InstructionHandle newIh) { bi.updateTarget(oldIh, newIh);
