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 defe0ed35 Fix Javadoc
defe0ed35 is described below
commit defe0ed351ca15b9b22dd8c08d535c7541934cae
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Jul 6 12:34:22 2023 -0400
Fix Javadoc
---
.../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 b3b22d1e4..76a707305 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 #verify(long, CancelOption[]) defining
the behavior on time-out or interrupt.
+ * @param options Optional {@link CancelOption}s 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 #verify(long, CancelOption[])
defining the behavior on time-out or interrupt.
+ * @param options Optional {@link 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.