Skip to content

Commit 08a1eb7

Browse files
committed
Change revision/data tags to Id, remove authors, javadoc formatting.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/cli/trunk@1443102 13f79535-47bb-0310-9956-ffa450edef68
1 parent 6b8205c commit 08a1eb7

23 files changed

Lines changed: 54 additions & 80 deletions

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
* Thrown when more than one option in an option group
2222
* has been provided.
2323
*
24-
* @author John Keyes ( john at integralsource.com )
25-
* @version $Revision$, $Date$
24+
* @version $Id$
2625
*/
2726
public class AlreadySelectedException extends ParseException
2827
{

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
/**
2424
* Exception thrown when an option can't be identified from a partial name.
2525
*
26-
* @author Emmanuel Bourg
27-
* @version $Revision$, $Date$
26+
* @version $Id$
2827
* @since 1.3
2928
*/
3029
public class AmbiguousOptionException extends UnrecognizedOptionException

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
* The class BasicParser provides a very simple implementation of
2222
* the {@link Parser#flatten(Options,String[],boolean) flatten} method.
2323
*
24-
* @author John Keyes (john at integralsource.com)
25-
* @version $Revision$, $Date$
24+
* @version $Id$
2625
* @deprecated since 1.3, use the {@link DefaultParser} instead
2726
*/
2827
@Deprecated

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

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,15 @@
2727

2828
/**
2929
* Represents list of arguments parsed against a {@link Options} descriptor.
30-
*
31-
* <p>It allows querying of a boolean {@link #hasOption(String opt)},
30+
* <p>
31+
* It allows querying of a boolean {@link #hasOption(String opt)},
3232
* in addition to retrieving the {@link #getOptionValue(String opt)}
33-
* for options requiring arguments.</p>
34-
*
35-
* <p>Additionally, any left-over or unrecognized arguments,
36-
* are available for further processing.</p>
33+
* for options requiring arguments.
34+
* <p>
35+
* Additionally, any left-over or unrecognized arguments,
36+
* are available for further processing.
3737
*
38-
* @author bob mcwhirter (bob @ werken.com)
39-
* @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
40-
* @author John Keyes (john at integralsource.com)
41-
* @version $Revision$, $Date$
38+
* @version $Id$
4239
*/
4340
public class CommandLine implements Serializable
4441
{

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
* can parse a String array according to the {@link Options} specified
2323
* and return a {@link CommandLine}.
2424
*
25-
* @author John Keyes (john at integralsource.com)
26-
* @version $Revision$, $Date$
25+
* @version $Id$
2726
*/
2827
public interface CommandLineParser
2928
{

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
/**
2626
* Default parser.
2727
*
28-
* @author Emmanuel Bourg
29-
* @version $Revision$, $Date$
28+
* @version $Id$
3029
* @since 1.3
3130
*/
3231
public class DefaultParser implements CommandLineParser

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@
2424
* The class GnuParser provides an implementation of the
2525
* {@link Parser#flatten(Options, String[], boolean) flatten} method.
2626
*
27-
* @author John Keyes (john at integralsource.com)
28-
* @version $Revision$, $Date$
27+
* @version $Id$
2928
* @deprecated since 1.3, use the {@link DefaultParser} instead
3029
*/
3130
@Deprecated

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,7 @@
6868
* Please report issues at http://example.com/issues
6969
* </pre>
7070
*
71-
* @author Slawek Zachcial
72-
* @author John Keyes (john at integralsource.com)
73-
* @version $Revision$, $Date$
71+
* @version $Id$
7472
*/
7573
public class HelpFormatter
7674
{

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
* Thrown when an option requiring an argument
2222
* is not provided with an argument.
2323
*
24-
* @author John Keyes (john at integralsource.com)
25-
* @version $Revision$, $Date$
24+
* @version $Id$
2625
*/
2726
public class MissingArgumentException extends ParseException
2827
{

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
/**
2424
* Thrown when a required option has not been provided.
2525
*
26-
* @author John Keyes ( john at integralsource.com )
27-
* @version $Revision$, $Date$
26+
* @version $Id$
2827
*/
2928
public class MissingOptionException extends ParseException
3029
{

0 commit comments

Comments
 (0)