diff --git a/eco-api/src/main/java/com/willfp/eco/core/Eco.java b/eco-api/src/main/java/com/willfp/eco/core/Eco.java index cc3cd60d..07f97fdf 100644 --- a/eco-api/src/main/java/com/willfp/eco/core/Eco.java +++ b/eco-api/src/main/java/com/willfp/eco/core/Eco.java @@ -63,16 +63,6 @@ import java.util.logging.Logger; @ApiStatus.Internal public interface Eco { - /** - * Get the instance of eco; the bridge between the api frontend and the implementation backend. - * - * @return The instance of eco. - */ - @ApiStatus.Internal - static Eco get() { - return Instance.get(); - } - /** * Create a scheduler. * @@ -552,6 +542,16 @@ public interface Eco { */ void unregisterCommand(@NotNull final PluginCommand command); + /** + * Get the instance of eco; the bridge between the api frontend and the implementation backend. + * + * @return The instance of eco. + */ + @ApiStatus.Internal + static Eco get() { + return Instance.get(); + } + /** * Manages the internal frontend -> backend communication. */