Author: brett
Date: Wed Aug  9 20:39:12 2006
New Revision: 430229

URL: http://svn.apache.org/viewvc?rev=430229&view=rev
Log:
correct inconsistency in the description and the function

Modified:
    
maven/components/branches/maven-2.0.x/maven-core/src/main/java/org/apache/maven/cli/MavenCli.java
    
maven/components/trunk/maven-cli/src/main/java/org/apache/maven/cli/CLIManager.java

Modified: 
maven/components/branches/maven-2.0.x/maven-core/src/main/java/org/apache/maven/cli/MavenCli.java
URL: 
http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core/src/main/java/org/apache/maven/cli/MavenCli.java?rev=430229&r1=430228&r2=430229&view=diff
==============================================================================
--- 
maven/components/branches/maven-2.0.x/maven-core/src/main/java/org/apache/maven/cli/MavenCli.java
 (original)
+++ 
maven/components/branches/maven-2.0.x/maven-core/src/main/java/org/apache/maven/cli/MavenCli.java
 Wed Aug  9 20:39:12 2006
@@ -664,7 +664,7 @@
                 OptionBuilder.withLongOpt( "version" ).withDescription( 
"Display version information" ).create(
                     VERSION ) );
             options.addOption(
-                OptionBuilder.withLongOpt( "quiet" ).withDescription( "Quiet 
output - only show warnings and errors" ).create(
+                OptionBuilder.withLongOpt( "quiet" ).withDescription( "Quiet 
output - only show errors" ).create(
                     QUIET ) );
             options.addOption(
                 OptionBuilder.withLongOpt( "debug" ).withDescription( "Produce 
execution debug output" ).create(

Modified: 
maven/components/trunk/maven-cli/src/main/java/org/apache/maven/cli/CLIManager.java
URL: 
http://svn.apache.org/viewvc/maven/components/trunk/maven-cli/src/main/java/org/apache/maven/cli/CLIManager.java?rev=430229&r1=430228&r2=430229&view=diff
==============================================================================
--- 
maven/components/trunk/maven-cli/src/main/java/org/apache/maven/cli/CLIManager.java
 (original)
+++ 
maven/components/trunk/maven-cli/src/main/java/org/apache/maven/cli/CLIManager.java
 Wed Aug  9 20:39:12 2006
@@ -86,7 +86,7 @@
             OptionBuilder.withLongOpt( "version" ).withDescription( "Display 
version information" ).create(
                 VERSION ) );
         options.addOption(
-            OptionBuilder.withLongOpt( "quiet" ).withDescription( "Quiet 
output - only show warnings and errors" ).create(
+            OptionBuilder.withLongOpt( "quiet" ).withDescription( "Quiet 
output - only show errors" ).create(
                 QUIET ) );
         options.addOption(
             OptionBuilder.withLongOpt( "debug" ).withDescription( "Produce 
execution debug output" ).create(


Reply via email to