This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch mask
in repository https://gitbox.apache.org/repos/asf/maven-shared-utils.git

commit 183cc979d4d1e6bca40333ebced18e72a70d9e99
Author: Elliotte Rusty Harold <elh...@ibiblio.org>
AuthorDate: Fri Jan 22 06:41:30 2021 -0500

    clean up Javadoc
---
 src/main/java/org/apache/maven/shared/utils/cli/Arg.java | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/apache/maven/shared/utils/cli/Arg.java 
b/src/main/java/org/apache/maven/shared/utils/cli/Arg.java
index e0eccf3..094cbba 100644
--- a/src/main/java/org/apache/maven/shared/utils/cli/Arg.java
+++ b/src/main/java/org/apache/maven/shared/utils/cli/Arg.java
@@ -27,24 +27,24 @@ import java.io.File;
 public interface Arg
 {
     /**
-     * @param value Set the value.
+     * @param value the value to be set
      */
     void setValue( String value );
 
     /**
-     * @param line The line of arguments.
+     * @param line the line of arguments
      */
     void setLine( String line ) throws CommandLineException;
 
     /**
-     * @param value The file to be set.
+     * @param file the file to be set
      */
-    void setFile( File value );
+    void setFile( File file );
 
     /**
-     * To mask the argument value when a command line ask to print his 
arguments.
+     * Whether to hide the argument value when a command line prints the 
arguments.
      *
-     * @param mask new state of the {@code maks} property
+     * @param mask new state of the {@code mask} property
      * @since 0.6
      */
     void setMask( boolean mask );

Reply via email to