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 9569541f41022ff4e4a13894c9034d48a6b7c362 Author: Gary Gregory <[email protected]> AuthorDate: Sat Feb 14 08:59:59 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/verifier/statics/Pass2Verifier.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/bcel/verifier/statics/Pass2Verifier.java b/src/main/java/org/apache/bcel/verifier/statics/Pass2Verifier.java index 7588cbd5..641df534 100644 --- a/src/main/java/org/apache/bcel/verifier/statics/Pass2Verifier.java +++ b/src/main/java/org/apache/bcel/verifier/statics/Pass2Verifier.java @@ -1254,6 +1254,7 @@ public final class Pass2Verifier extends PassVerifier implements Constants { /** * Should only be instantiated by a Verifier. * + * @param verifier the verifier. * @see Verifier */ public Pass2Verifier(final Verifier verifier) { @@ -1449,6 +1450,9 @@ public final class Pass2Verifier extends PassVerifier implements Constants { * pass-2-verified correctly. The method number method_nr is the method you get using * {@code Repository.lookupClass(myOwner.getClassname()).getMethods()[method_nr];}. You should not add own information. * Leave that to JustIce. + * + * @param methodNr the method number. + * @return the LocalVariablesInfo object or null. */ public LocalVariablesInfo getLocalVariablesInfo(final int methodNr) { if (verify() != VerificationResult.VR_OK) {
