From 2fb28dda327146b82c8e047cd4284653f7a92b19 Mon Sep 17 00:00:00 2001 From: Craftinators Date: Fri, 17 Mar 2023 08:54:17 -0400 Subject: [PATCH] docs(HookSuperVanish): documented class --- .../hmccosmetics/hooks/misc/HookSuperVanish.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/common/src/main/java/com/hibiscusmc/hmccosmetics/hooks/misc/HookSuperVanish.java b/common/src/main/java/com/hibiscusmc/hmccosmetics/hooks/misc/HookSuperVanish.java index 750e5310..e8ddec68 100644 --- a/common/src/main/java/com/hibiscusmc/hmccosmetics/hooks/misc/HookSuperVanish.java +++ b/common/src/main/java/com/hibiscusmc/hmccosmetics/hooks/misc/HookSuperVanish.java @@ -7,13 +7,14 @@ import de.myzelyam.api.vanish.PlayerHideEvent; import de.myzelyam.api.vanish.PlayerShowEvent; import org.bukkit.entity.Player; import org.bukkit.event.EventHandler; -import org.bukkit.event.Listener; import org.jetbrains.annotations.NotNull; -public class HookSuperVanish extends Hook implements Listener { - - // NOTE: Supervanish and Premium Vanish both use the same api - +/** + * A hook that integrates the plugin {@link de.myzelyam.api.vanish.VanishAPI Supervanish} + * + * @implSpec Supervanish and Premium Vanish both use the same api + */ +public class HookSuperVanish extends Hook { public HookSuperVanish() { super("SuperVanish"); }