You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ba...@apache.org on 2008/04/26 19:31:49 UTC

svn commit: r651842 - /commons/proper/cli/branches/cli-1.x/src/test/org/apache/commons/cli/ApplicationTest.java

Author: bayard
Date: Sat Apr 26 10:31:48 2008
New Revision: 651842

URL: http://svn.apache.org/viewvc?rev=651842&view=rev
Log:
Removing the duplication 'version' option as pointed out by Andrew Kutz

Modified:
    commons/proper/cli/branches/cli-1.x/src/test/org/apache/commons/cli/ApplicationTest.java

Modified: commons/proper/cli/branches/cli-1.x/src/test/org/apache/commons/cli/ApplicationTest.java
URL: http://svn.apache.org/viewvc/commons/proper/cli/branches/cli-1.x/src/test/org/apache/commons/cli/ApplicationTest.java?rev=651842&r1=651841&r2=651842&view=diff
==============================================================================
--- commons/proper/cli/branches/cli-1.x/src/test/org/apache/commons/cli/ApplicationTest.java (original)
+++ commons/proper/cli/branches/cli-1.x/src/test/org/apache/commons/cli/ApplicationTest.java Sat Apr 26 10:31:48 2008
@@ -90,7 +90,6 @@
         options.addOption( "quiet", false, "be extra quiet" );
         options.addOption( "verbose", false, "be extra verbose" );
         options.addOption( "debug", false, "print debug information" );
-        options.addOption( "version", false, "produce logging information without adornments" );
         options.addOption( "logfile", true, "use given file for log" );
         options.addOption( "logger", true, "the class which is to perform the logging" );
         options.addOption( "listener", true, "add an instance of a class as a project listener" );
@@ -128,4 +127,4 @@
 
     }
 
-}
\ No newline at end of file
+}