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 { /**