Skip to content

Commit c644cb1

Browse files
committed
Javadoc
1 parent c05acee commit c644cb1

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

src/main/java/org/apache/commons/cli/Parser.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ public CommandLine parse(final Options options, final String[] arguments, final
118118
* @param properties command line option name-value pairs
119119
* @return the list of atomic option and value tokens
120120
* @throws ParseException if there are any problems encountered while parsing the command line tokens.
121-
*
122121
* @since 1.1
123122
*/
124123
public CommandLine parse(final Options options, final String[] arguments, final Properties properties) throws ParseException {
@@ -134,11 +133,8 @@ public CommandLine parse(final Options options, final String[] arguments, final
134133
* @param stopAtNonOption if {@code true} an unrecognized argument stops the parsing and the remaining arguments
135134
* are added to the {@link CommandLine}s args list. If {@code false} an unrecognized argument triggers a
136135
* ParseException.
137-
*
138136
* @return the list of atomic option and value tokens
139-
*
140137
* @throws ParseException if there are any problems encountered while parsing the command line tokens.
141-
*
142138
* @since 1.1
143139
*/
144140
public CommandLine parse(final Options options, final String[] arguments, final Properties properties, final boolean stopAtNonOption)
@@ -210,7 +206,6 @@ else if (token.startsWith("-")) {
210206
*
211207
* @param opt The current Option
212208
* @param iter The iterator over the flattened command line Options.
213-
*
214209
* @throws ParseException if an argument value is required and it is has not been found.
215210
*/
216211
public void processArgs(final Option opt, final ListIterator<String> iter) throws ParseException {
@@ -241,7 +236,6 @@ public void processArgs(final Option opt, final ListIterator<String> iter) throw
241236
*
242237
* @param arg The String value representing an Option
243238
* @param iter The iterator over the flattened command line arguments.
244-
*
245239
* @throws ParseException if {@code arg} does not represent an Option
246240
*/
247241
protected void processOption(final String arg, final ListIterator<String> iter) throws ParseException {

0 commit comments

Comments
 (0)