Clarify INeedConfig.

This commit is contained in:
asofold 2017-04-07 14:57:16 +02:00
parent 4e2ab0164e
commit c1b12c3fb8

View File

@ -16,9 +16,12 @@ package fr.neatmonster.nocheatplus.components.registry.feature;
/**
* Indicate that a component needs config after time of creation but in onEnable.
* @author mc_dev
* Indicate that a component needs to get notified on reloading the
* configuration, as well as to be configured during the registration process.
* This means onReload will be called during registration.
*
* @author asofold
*
*/
public interface INeedConfig extends INotifyReload{
public interface INeedConfig extends INotifyReload {
}