Rename IComponentRegistry to ComponentRegistry.

This commit is contained in:
asofold 2012-11-08 10:46:02 +01:00
parent 1235f7acd0
commit 823fc285c5
3 changed files with 4 additions and 4 deletions

View File

@ -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>

View File

@ -3,7 +3,7 @@ package fr.neatmonster.nocheatplus.components;
public interface NoCheatPlusAPI extends IComponentRegistry{
public interface NoCheatPlusAPI extends ComponentRegistry{

View File

@ -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;