summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/commands/WhoisCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/commands/WhoisCommand.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/commands/WhoisCommand.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/commands/WhoisCommand.java b/EssentialsUpdate/src/f00f/net/irc/martyr/commands/WhoisCommand.java
deleted file mode 100644
index 1c5dea618..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/commands/WhoisCommand.java
+++ /dev/null
@@ -1,40 +0,0 @@
-package f00f.net.irc.martyr.commands;
-
-import f00f.net.irc.martyr.OutCommand;
-
-/**
- * Implements a WHOIS command, to query details about a user.
- *
- */
-public class WhoisCommand implements OutCommand
-{
- private static final String WHOIS = "WHOIS";
-
- private String target;
-
- /**
- * @param target the nick or mask that you wish to know about.
- */
- public WhoisCommand( String target )
- {
- this.target = target;
- }
-
- /**
- * @return "WHOIS"
- */
- public String getIrcIdentifier()
- {
- return WHOIS;
- }
-
- /**
- * Simply returns the string given in the constructor.
- */
- public String render()
- {
- return WHOIS + " " + target;
- }
-}
-
-