mirror of
https://github.com/HibiscusMC/HMCCosmetics.git
synced 2025-12-19 15:09:19 +00:00
docs(HMCCosmeticSetupEvent): Add missing period
This commit is contained in:
@@ -5,19 +5,17 @@ import org.bukkit.event.HandlerList;
|
|||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called when the plugin is set up and/or reloaded
|
* Called when the plugin is set up and/or reloaded.
|
||||||
*/
|
*/
|
||||||
public class HMCCosmeticSetupEvent extends Event {
|
public class HMCCosmeticSetupEvent extends Event {
|
||||||
private static final HandlerList handlers = new HandlerList();
|
private static final HandlerList HANDLER_LIST = new HandlerList();
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@NotNull
|
public @NotNull HandlerList getHandlers() {
|
||||||
public HandlerList getHandlers() {
|
return HANDLER_LIST;
|
||||||
return handlers;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
public static @NotNull HandlerList getHandlerList() {
|
||||||
public static HandlerList getHandlerList() {
|
return HANDLER_LIST;
|
||||||
return handlers;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user