You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/12/31 13:41:15 UTC

[commons-lang] branch master updated: Add missing Javadoc param tag.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 5741f6f  Add missing Javadoc param tag.
5741f6f is described below

commit 5741f6ff1990abe433aa259b875b329457e49c04
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Dec 31 08:41:12 2021 -0500

    Add missing Javadoc param tag.
---
 .../java/org/apache/commons/lang3/concurrent/UncheckedFutureImpl.java    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/java/org/apache/commons/lang3/concurrent/UncheckedFutureImpl.java b/src/main/java/org/apache/commons/lang3/concurrent/UncheckedFutureImpl.java
index c88340b..bc826c9 100644
--- a/src/main/java/org/apache/commons/lang3/concurrent/UncheckedFutureImpl.java
+++ b/src/main/java/org/apache/commons/lang3/concurrent/UncheckedFutureImpl.java
@@ -27,6 +27,7 @@ import org.apache.commons.lang3.exception.UncheckedInterruptedException;
 /**
  * An {@link Future} implementation that throws unchecked instead of checked exceptions.
  *
+ * @param <V> The result type returned by this UncheckedFuture's {@link #get()} and {@link #get(long, TimeUnit)} methods.
  * @see Future
  * @since 3.13.0
  */