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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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