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-cli.git
The following commit(s) were added to refs/heads/master by this push:
new 7c3ce6c9 Remove dead comment
7c3ce6c9 is described below
commit 7c3ce6c996dafb6acf2f14c5511ca542010f0fe2
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Nov 8 11:33:32 2025 -0500
Remove dead comment
---
src/main/java/org/apache/commons/cli/CommandLineParser.java | 13 -------------
1 file changed, 13 deletions(-)
diff --git a/src/main/java/org/apache/commons/cli/CommandLineParser.java
b/src/main/java/org/apache/commons/cli/CommandLineParser.java
index 08f04922..f57b63e7 100644
--- a/src/main/java/org/apache/commons/cli/CommandLineParser.java
+++ b/src/main/java/org/apache/commons/cli/CommandLineParser.java
@@ -62,17 +62,4 @@ public interface CommandLineParser {
*/
CommandLine parse(Options options, String[] arguments, boolean
stopAtNonOption) throws ParseException;
- /**
- * Parses the arguments according to the specified options and properties.
- *
- * @param options the specified Options.
- * @param arguments the command line arguments.
- * @param properties command line option name-value pairs.
- * @param stopAtNonOption if {@code true} an unrecognized argument stops
the parsing and the remaining arguments
- * are added to the {@link CommandLine}s args list. If {@code
false} an unrecognized argument triggers a
- * ParseException.
- *
- * @return the list of atomic option and value tokens.
- * @throws ParseException if there are any problems encountered while
parsing the command line tokens.
- */
}