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 a1c0a394b4de18d3a3ba201aba7394906cd9e3bb Author: Gary Gregory <[email protected]> AuthorDate: Sat Feb 14 08:59:57 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/verifier/TransitiveHull.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/org/apache/bcel/verifier/TransitiveHull.java b/src/main/java/org/apache/bcel/verifier/TransitiveHull.java index 7b9aebc6..6d26bc60 100644 --- a/src/main/java/org/apache/bcel/verifier/TransitiveHull.java +++ b/src/main/java/org/apache/bcel/verifier/TransitiveHull.java @@ -31,6 +31,8 @@ public class TransitiveHull implements VerifierFactoryObserver { /** * This method implements a demonstration program of how to use the VerifierFactoryObserver. It transitively verifies * all class files encountered; this may take up a lot of time and, more notably, memory. + * + * @param args command line arguments (expects one argument: the root class to verify). */ public static void main(final String[] args) { if (args.length != 1) {
