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 e7ca9db5ea96f4223f26ae21346c39649c26154d Author: Gary Gregory <[email protected]> AuthorDate: Fri Jan 9 15:02:35 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/util/Args.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/apache/bcel/util/Args.java b/src/main/java/org/apache/bcel/util/Args.java index 100f3f9a..93c70e73 100644 --- a/src/main/java/org/apache/bcel/util/Args.java +++ b/src/main/java/org/apache/bcel/util/Args.java @@ -29,13 +29,6 @@ import org.apache.bcel.classfile.ClassFormatException; */ public class Args { - /** - * Private constructor to prevent instantiation of this utility class. - */ - public Args() { - // Utility class - } - /** * Requires a specific value. * @@ -150,4 +143,11 @@ public class Args { public static int requireU4(final int value, final String message) { return requireU4(value, 0, message); } + + /** + * Private constructor to prevent instantiation of this utility class. + */ + public Args() { + // Utility class + } }
