diff options
author | snowleo <schneeleo@gmail.com> | 2012-07-15 19:58:08 +0200 |
---|---|---|
committer | snowleo <schneeleo@gmail.com> | 2012-07-15 19:58:08 +0200 |
commit | fff9f0799480c0d8a047f3fc24d84e0a6193c422 (patch) | |
tree | 29ec31bbfcd24f2c8761cc83bdb5740355716374 /EssentialsXMPP/src | |
parent | 711d42d6042e1700abe33b4832eeb75d6e1a9a12 (diff) | |
download | Essentials-fff9f0799480c0d8a047f3fc24d84e0a6193c422.tar Essentials-fff9f0799480c0d8a047f3fc24d84e0a6193c422.tar.gz Essentials-fff9f0799480c0d8a047f3fc24d84e0a6193c422.tar.lz Essentials-fff9f0799480c0d8a047f3fc24d84e0a6193c422.tar.xz Essentials-fff9f0799480c0d8a047f3fc24d84e0a6193c422.zip |
server-layer part 2
Diffstat (limited to 'EssentialsXMPP/src')
-rw-r--r-- | EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java | 4 | ||||
-rw-r--r-- | EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmppspy.java | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java index 0c9e8d91c..c11e212e7 100644 --- a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java +++ b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java @@ -1,7 +1,7 @@ package com.earth2me.essentials.xmpp; import com.earth2me.essentials.Console; -import com.earth2me.essentials.api.server.ICommandSender; +import com.earth2me.essentials.api.server.CommandSender; import com.earth2me.essentials.commands.EssentialsCommand; import com.earth2me.essentials.commands.NotEnoughArgumentsException; import org.bukkit.command.CommandSender; @@ -11,7 +11,7 @@ import org.bukkit.entity.Player; public class Commandxmpp extends EssentialsCommand { @Override - protected void run(final ICommandSender sender, final String commandLabel, final String[] args) throws NotEnoughArgumentsException + protected void run(final CommandSender sender, final String commandLabel, final String[] args) throws NotEnoughArgumentsException { if (args.length < 2) { diff --git a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmppspy.java b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmppspy.java index c5f846aa2..13d152306 100644 --- a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmppspy.java +++ b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmppspy.java @@ -1,6 +1,6 @@ package com.earth2me.essentials.xmpp; -import com.earth2me.essentials.api.server.ICommandSender; +import com.earth2me.essentials.api.server.CommandSender; import com.earth2me.essentials.commands.EssentialsCommand; import com.earth2me.essentials.commands.NotEnoughArgumentsException; import java.util.List; @@ -11,7 +11,7 @@ import org.bukkit.entity.Player; public class Commandxmppspy extends EssentialsCommand { @Override - protected void run(final ICommandSender sender, final String commandLabel, final String[] args) throws NotEnoughArgumentsException + protected void run(final CommandSender sender, final String commandLabel, final String[] args) throws NotEnoughArgumentsException { if (args.length < 1) { |