File tree Expand file tree Collapse file tree
src/java/org/apache/commons/cli Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ public class Option implements Cloneable {
9595 private boolean hasArg ;
9696
9797 /** argName specifies the name of the argument for this option */
98- private String argName ;
98+ private String argName = "arg" ;
9999
100100 /** description of the option */
101101 private String description ;
Original file line number Diff line number Diff line change 11/*
2- * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//cli/src/java/org/apache/commons/cli/OptionBuilder.java,v 1.13 2002/11/18 08:41:26 jkeyes Exp $
3- * $Revision: 1.13 $
4- * $Date: 2002/11/18 08:41:26 $
2+ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//cli/src/java/org/apache/commons/cli/OptionBuilder.java,v 1.14 2002/11/19 22:54:48 jkeyes Exp $
3+ * $Revision: 1.14 $
4+ * $Date: 2002/11/19 22:54:48 $
55 *
66 * ====================================================================
77 *
@@ -101,7 +101,7 @@ private OptionBuilder() {
101101 */
102102 private static void reset () {
103103 description = null ;
104- argName = null ;
104+ argName = "arg" ;
105105 longopt = null ;
106106 type = null ;
107107 required = false ;
You can’t perform that action at this time.
0 commit comments