1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-17 12:01:20 +02:00

Moved CommandsHandler to commands package

This commit is contained in:
snowleo
2012-03-14 03:53:30 +01:00
parent 86c85ae92b
commit c7a4d37f6e
3 changed files with 3 additions and 2 deletions

View File

@@ -17,6 +17,7 @@
*/ */
package com.earth2me.essentials; package com.earth2me.essentials;
import com.earth2me.essentials.commands.EssentialsCommandHandler;
import com.earth2me.essentials.utils.ExecuteTimer; import com.earth2me.essentials.utils.ExecuteTimer;
import com.earth2me.essentials.economy.WorthHolder; import com.earth2me.essentials.economy.WorthHolder;
import com.earth2me.essentials.economy.Economy; import com.earth2me.essentials.economy.Economy;

View File

@@ -1,4 +1,4 @@
package com.earth2me.essentials; package com.earth2me.essentials.commands;
import static com.earth2me.essentials.I18n._; import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.api.*; import com.earth2me.essentials.api.*;

View File

@@ -1,6 +1,6 @@
package com.earth2me.essentials.xmpp; package com.earth2me.essentials.xmpp;
import com.earth2me.essentials.EssentialsCommandHandler; import com.earth2me.essentials.commands.EssentialsCommandHandler;
import static com.earth2me.essentials.I18n._; import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.api.ICommandHandler; import com.earth2me.essentials.api.ICommandHandler;
import com.earth2me.essentials.api.IEssentials; import com.earth2me.essentials.api.IEssentials;