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 01565f8e1aa88345d28fe803d37c64cd9937e64f Author: Gary Gregory <[email protected]> AuthorDate: Sat Feb 14 08:59:59 2026 -0500 Javadoc --- .../org/apache/bcel/verifier/statics/Pass3aVerifier.java | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/bcel/verifier/statics/Pass3aVerifier.java b/src/main/java/org/apache/bcel/verifier/statics/Pass3aVerifier.java index 885d5277..a2e16322 100644 --- a/src/main/java/org/apache/bcel/verifier/statics/Pass3aVerifier.java +++ b/src/main/java/org/apache/bcel/verifier/statics/Pass3aVerifier.java @@ -895,7 +895,12 @@ public final class Pass3aVerifier extends PassVerifier { */ private Code code; - /** Should only be instantiated by a Verifier. */ + /** + * Should only be instantiated by a Verifier. + * + * @param verifier the verifier. + * @param methodNo the method number. + */ public Pass3aVerifier(final Verifier verifier, final int methodNo) { this.verifier = verifier; this.methodNo = methodNo; @@ -1069,7 +1074,11 @@ public final class Pass3aVerifier extends PassVerifier { } } - /** Returns the method number as supplied when instantiating. */ + /** + * Returns the method number as supplied when instantiating. + * + * @return the method number. + */ public int getMethodNo() { return methodNo; } @@ -1196,6 +1205,9 @@ public final class Pass3aVerifier extends PassVerifier { * * Returns the String representation of the Object obj; this is obj.toString() if it does not throw any * RuntimeException, or else it is a string derived only from obj's class name. + * + * @param obj the object to convert to string. + * @return the string representation. */ protected String tostring(final Object obj) { String ret;
