- Separate provider methods from other tasks performed on startup - No longer requires BukkitService to be instantiated manually - Merge MetricsManager and Initializer into OnStartUpTasks
16 lines
258 B
Java
16 lines
258 B
Java
package fr.xephi.authme.initialization;
|
|
|
|
/**
|
|
* Interface for reloadable entities.
|
|
*
|
|
* @see fr.xephi.authme.command.executable.authme.ReloadCommand
|
|
*/
|
|
public interface Reloadable {
|
|
|
|
/**
|
|
* Performs the reload action.
|
|
*/
|
|
void reload();
|
|
|
|
}
|