This is an automated email from the ASF dual-hosted git repository. claude pushed a commit to branch create-UIOptionCollections in repository https://gitbox.apache.org/repos/asf/creadur-rat.git
commit 2a05d1a96d165cfbb329cf0fb6142fe529d055f0 Author: Claude Warren <[email protected]> AuthorDate: Sun Mar 22 15:32:30 2026 +0000 modified OptionCollection to use CLIOptionCollection --- apache-rat-core/src/main/java/org/apache/rat/OptionCollection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apache-rat-core/src/main/java/org/apache/rat/OptionCollection.java b/apache-rat-core/src/main/java/org/apache/rat/OptionCollection.java index b16ebd09..e083ec08 100644 --- a/apache-rat-core/src/main/java/org/apache/rat/OptionCollection.java +++ b/apache-rat-core/src/main/java/org/apache/rat/OptionCollection.java @@ -200,7 +200,7 @@ public final class OptionCollection { * @return the Options comprised of the Options defined in this class. */ public static Options buildOptions() { - return Arg.getOptions().addOption(HELP); + return CLIOptionCollection.INSTANCE.getOptions(); } /**
