From fbde1ff82a7b84bcb455bec4e715ed4642d0c912 Mon Sep 17 00:00:00 2001 From: Adrian <68704415+4drian3d@users.noreply.github.com> Date: Sun, 14 Aug 2022 16:16:42 -0500 Subject: [PATCH] Implement Documented javadoc annotation on AwaitingEvent (#837) --- .../com/velocitypowered/api/event/annotation/AwaitingEvent.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/src/main/java/com/velocitypowered/api/event/annotation/AwaitingEvent.java b/api/src/main/java/com/velocitypowered/api/event/annotation/AwaitingEvent.java index 35e678e28..f4bb0bbe8 100644 --- a/api/src/main/java/com/velocitypowered/api/event/annotation/AwaitingEvent.java +++ b/api/src/main/java/com/velocitypowered/api/event/annotation/AwaitingEvent.java @@ -7,6 +7,7 @@ package com.velocitypowered.api.event.annotation; +import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Target; @@ -17,6 +18,7 @@ import java.lang.annotation.Target; * operations in a non-blocking matter. */ @Target(ElementType.TYPE) +@Documented public @interface AwaitingEvent { }