Skip to content

Commit

Permalink
Even more javadoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
akurtakov committed Dec 12, 2024
1 parent 6328ca8 commit d9fd05c
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
* values have been provided to the future (if <code>true</code>, meaning that
* subsequent calls to {@link #get()} will not block), or {@link #isDone()} to
* determine if <b>all</b> operations and results have been completed.
* </p>
* <p>
* If {@link #hasValue()} is true, then the client may access status information
* associated with the completed operation(s) via {@link #getStatus()}. Until
Expand Down Expand Up @@ -72,8 +71,7 @@ public interface IFuture<ResultType> {
* @throws InterruptedException if thread calling this method is
* interrupted.
* @throws OperationCanceledException if the operation has been canceled via
* progress monitor
* {@link #getProgressMonitor()}.
* progress monitor.
*/
ResultType get() throws InterruptedException, OperationCanceledException;

Expand All @@ -90,8 +88,7 @@ public interface IFuture<ResultType> {
* @throws TimeoutException if the given wait time is exceeded without
* getting result.
* @throws OperationCanceledException if the operation has been canceled via
* progress monitor
* {@link #getProgressMonitor()}.
* progress monitor.
*/
ResultType get(long waitTimeInMillis) throws InterruptedException, TimeoutException, OperationCanceledException;

Expand Down

0 comments on commit d9fd05c

Please sign in to comment.