Implement Documented javadoc annotation on AwaitingEvent (#837)

This commit is contained in:
Adrian
2022-08-14 16:16:42 -05:00
committed by GitHub
parent 3293f7a9eb
commit fbde1ff82a

View File

@@ -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 {
}