From 2f3306aa9782230f1c799060dea06f5f735141ee Mon Sep 17 00:00:00 2001 From: Ben Woo <30431861+benwoo1110@users.noreply.github.com> Date: Thu, 14 Sep 2023 00:37:33 +0800 Subject: [PATCH] Add class level docs for AsyncResult --- .../mvplugins/multiverse/core/utils/result/AsyncResult.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/mvplugins/multiverse/core/utils/result/AsyncResult.java b/src/main/java/org/mvplugins/multiverse/core/utils/result/AsyncResult.java index 3a306955..8d0a268a 100644 --- a/src/main/java/org/mvplugins/multiverse/core/utils/result/AsyncResult.java +++ b/src/main/java/org/mvplugins/multiverse/core/utils/result/AsyncResult.java @@ -6,6 +6,11 @@ import java.util.concurrent.CompletableFuture; import java.util.function.Consumer; import java.util.function.Function; +/** + * Represents the result of an asynchronous operation that wraps a {@link CompletableFuture}. + * + * @param The type of the value. + */ public final class AsyncResult { /**