You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2019/02/09 16:20:27 UTC

[commons-cli] branch master updated: Fix JavaDoc warning

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

britter pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-cli.git


The following commit(s) were added to refs/heads/master by this push:
     new 18e3638  Fix JavaDoc warning
18e3638 is described below

commit 18e36386a232ca7e31931bd1d51b91a7eadcf72c
Author: Benedikt Ritter <br...@apache.org>
AuthorDate: Sat Feb 9 17:20:24 2019 +0100

    Fix JavaDoc warning
---
 src/main/java/org/apache/commons/cli/TypeHandler.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/cli/TypeHandler.java b/src/main/java/org/apache/commons/cli/TypeHandler.java
index 9ed8beb..6c43ccd 100644
--- a/src/main/java/org/apache/commons/cli/TypeHandler.java
+++ b/src/main/java/org/apache/commons/cli/TypeHandler.java
@@ -54,7 +54,8 @@ public class TypeHandler
      * with the value of <code>str</code>.
      *
      * @param str the command line value
-     * @param clazz the type of argument
+     * @param clazz the class representing the type of argument
+     * @param <T> type of argument
      * @return The instance of <code>clazz</code> initialised with
      * the value of <code>str</code>.
      * @throws ParseException if the value creation for the given class failed