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/mina-sshd.git
The following commit(s) were added to refs/heads/master by this push:
new 750cfb4e1 Fix Javadoc warnings
750cfb4e1 is described below
commit 750cfb4e174a596cbb728a68b4d9f148a3b03666
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Jul 6 08:52:53 2023 -0400
Fix Javadoc warnings
---
.../main/java/org/apache/sshd/common/future/AbstractSshFuture.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/sshd-common/src/main/java/org/apache/sshd/common/future/AbstractSshFuture.java
b/sshd-common/src/main/java/org/apache/sshd/common/future/AbstractSshFuture.java
index d468c737d..b3b22d1e4 100644
---
a/sshd-common/src/main/java/org/apache/sshd/common/future/AbstractSshFuture.java
+++
b/sshd-common/src/main/java/org/apache/sshd/common/future/AbstractSshFuture.java
@@ -103,7 +103,7 @@ public abstract class AbstractSshFuture<T extends
SshFuture<T>> extends Abstract
* @param <R> The generic result type
* @param expectedType The expected result type
* @param timeout The timeout (millis) to wait for a result
- * @param options Optional {@link CancelOptions} defining the
behavior on time-out or interrupt.
+ * @param options Optional #verify(long, CancelOption[]) defining
the behavior on time-out or interrupt.
* @return The (never {@code null}) result
* @throws IOException If failed to retrieve the expected result on time
*/
@@ -158,7 +158,7 @@ public abstract class AbstractSshFuture<T extends
SshFuture<T>> extends Abstract
* @param timeoutMillis The delay we will wait for the Future to
be ready
* @param interruptable Tells if the wait can be interrupted or
not. If {@code true} and the thread is
* interrupted then an {@link
InterruptedIOException} is thrown.
- * @param options Optional {@link CancelOptions} defining
the behavior on time-out or interrupt.
+ * @param options Optional #verify(long, CancelOption[])
defining the behavior on time-out or interrupt.
* @return The non-{@code null} result object if
the Future is ready, {@code null} if the
* timeout expired and no result was
received
* @throws InterruptedIOException If the thread has been interrupted when
it's not allowed.