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

server-layer part 2

This commit is contained in:
snowleo
2012-07-15 19:58:08 +02:00
parent 711d42d604
commit fff9f07994
97 changed files with 446 additions and 281 deletions

View File

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

View File

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