mirror of
https://github.com/NoCheatPlus/NoCheatPlus.git
synced 2025-03-02 10:31:25 +01:00
Rename IComponentRegistry to ComponentRegistry.
This commit is contained in:
parent
1235f7acd0
commit
823fc285c5
@ -1,6 +1,6 @@
|
||||
package fr.neatmonster.nocheatplus.components;
|
||||
|
||||
public interface IComponentRegistry {
|
||||
public interface ComponentRegistry {
|
||||
/**
|
||||
* Convenience method to add components according to implemented interfaces,
|
||||
* like Listener, INotifyReload, INeedConfig.<br>
|
@ -3,7 +3,7 @@ package fr.neatmonster.nocheatplus.components;
|
||||
|
||||
|
||||
|
||||
public interface NoCheatPlusAPI extends IComponentRegistry{
|
||||
public interface NoCheatPlusAPI extends ComponentRegistry{
|
||||
|
||||
|
||||
|
||||
|
@ -31,7 +31,7 @@ import fr.neatmonster.nocheatplus.checks.fight.FightConfig;
|
||||
import fr.neatmonster.nocheatplus.checks.inventory.InventoryConfig;
|
||||
import fr.neatmonster.nocheatplus.checks.moving.MovingConfig;
|
||||
import fr.neatmonster.nocheatplus.command.INotifyReload;
|
||||
import fr.neatmonster.nocheatplus.components.IComponentRegistry;
|
||||
import fr.neatmonster.nocheatplus.components.ComponentRegistry;
|
||||
import fr.neatmonster.nocheatplus.components.IHaveCheckType;
|
||||
import fr.neatmonster.nocheatplus.components.INeedConfig;
|
||||
import fr.neatmonster.nocheatplus.components.IRemoveData;
|
||||
@ -48,7 +48,7 @@ import fr.neatmonster.nocheatplus.hooks.APIUtils;
|
||||
* @author mc_dev
|
||||
*
|
||||
*/
|
||||
public class DataManager implements Listener, INotifyReload, INeedConfig, IComponentRegistry{
|
||||
public class DataManager implements Listener, INotifyReload, INeedConfig, ComponentRegistry{
|
||||
|
||||
protected static DataManager instance = null;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user