Skip to content

Commit c0d1018

Browse files
committed
Javadoc
1 parent 107acd4 commit c0d1018

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2121
* The class BasicParser provides a very simple implementation of the {@link Parser#flatten(Options,String[],boolean)
2222
* flatten} method.
2323
*
24-
* @deprecated since 1.3, use the {@link DefaultParser} instead.
24+
* @deprecated Since 1.3, use the {@link DefaultParser} instead.
2525
*/
2626
@Deprecated
2727
public class BasicParser extends Parser {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2424
* The class GnuParser provides an implementation of the {@link Parser#flatten(Options, String[], boolean) flatten}
2525
* method.
2626
*
27-
* @deprecated since 1.3, use the {@link DefaultParser} instead.
27+
* @deprecated Since 1.3, use the {@link DefaultParser} instead.
2828
*/
2929
@Deprecated
3030
public class GnuParser extends Parser {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ public void setType(final Class<?> type) {
966966
* </p>
967967
*
968968
* @param type the type of this Option.
969-
* @deprecated since 1.3, use {@link #setType(Class)} instead.
969+
* @deprecated Since 1.3, use {@link #setType(Class)} instead.
970970
*/
971971
@Deprecated
972972
public void setType(final Object type) {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2626
* This class is NOT thread safe. See <a href="https://issues.apache.org/jira/browse/CLI-209">CLI-209</a>
2727
*
2828
* @since 1.0
29-
* @deprecated since 1.3, use {@link Option#builder(String)} instead.
29+
* @deprecated Since 1.3, use {@link Option#builder(String)} instead.
3030
*/
3131
@Deprecated
3232
public final class OptionBuilder {
@@ -281,7 +281,7 @@ public static OptionBuilder withType(final Class<?> newType) {
281281
*
282282
* @param newType the type of the Options argument value
283283
* @return the OptionBuilder instance
284-
* @deprecated since 1.3, use {@link #withType(Class)} instead
284+
* @deprecated Since 1.3, use {@link #withType(Class)} instead
285285
*/
286286
@Deprecated
287287
public static OptionBuilder withType(final Object newType) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2727
/**
2828
* Creates {@link CommandLine} instances.
2929
*
30-
* @deprecated since 1.3, the two-pass parsing with the flatten method is not enough flexible to handle complex cases
30+
* @deprecated Since 1.3, the two-pass parsing with the flatten method is not enough flexible to handle complex cases
3131
*/
3232
@Deprecated
3333
public abstract class Parser implements CommandLineParser {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2626
* The class PosixParser provides an implementation of the {@link Parser#flatten(Options,String[],boolean) flatten}
2727
* method.
2828
*
29-
* @deprecated since 1.3, use the {@link DefaultParser} instead
29+
* @deprecated Since 1.3, use the {@link DefaultParser} instead
3030
*/
3131
@Deprecated
3232
public class PosixParser extends Parser {

0 commit comments

Comments
 (0)