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 a6cb5fee7d4d9ebfe1b3f53f554a0df306a2e599 Author: Gary Gregory <[email protected]> AuthorDate: Sat Jan 10 22:50:23 2026 -0500 Javadoc --- .../java/org/apache/bcel/verifier/structurals/ExceptionHandlers.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/bcel/verifier/structurals/ExceptionHandlers.java b/src/main/java/org/apache/bcel/verifier/structurals/ExceptionHandlers.java index da8d50dc..25d3c2d4 100644 --- a/src/main/java/org/apache/bcel/verifier/structurals/ExceptionHandlers.java +++ b/src/main/java/org/apache/bcel/verifier/structurals/ExceptionHandlers.java @@ -44,6 +44,8 @@ public class ExceptionHandlers { /** * Constructs a new ExceptionHandlers instance. + * + * @param mg the method generator. */ public ExceptionHandlers(final MethodGen mg) { exceptionHandlers = new HashMap<>(); @@ -58,6 +60,9 @@ public class ExceptionHandlers { /** * Returns all the ExceptionHandler instances representing exception handlers that protect the instruction ih. + * + * @param ih the instruction handle. + * @return array of exception handlers. */ public ExceptionHandler[] getExceptionHandlers(final InstructionHandle ih) { final Set<ExceptionHandler> hsSet = exceptionHandlers.get(ih);
