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 1fadee53a323d764ac5cb8b369d61f1d10f3211e Author: Gary Gregory <[email protected]> AuthorDate: Fri Jan 9 15:39:48 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/util/Class2HTML.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/org/apache/bcel/util/Class2HTML.java b/src/main/java/org/apache/bcel/util/Class2HTML.java index e9c4fa51..3779ac05 100644 --- a/src/main/java/org/apache/bcel/util/Class2HTML.java +++ b/src/main/java/org/apache/bcel/util/Class2HTML.java @@ -71,6 +71,12 @@ public class Class2HTML implements Constants { basicTypes.add("float"); } + /** + * Main program to convert class files to HTML. + * + * @param argv command line arguments. + * @throws IOException if an I/O error occurs. + */ public static void main(final String[] argv) throws IOException { final String[] fileName = new String[argv.length]; int files = 0;
