summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserMeReply.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserMeReply.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserMeReply.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserMeReply.java b/EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserMeReply.java
deleted file mode 100644
index 9083f0a73..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserMeReply.java
+++ /dev/null
@@ -1,28 +0,0 @@
-package f00f.net.irc.martyr.replies;
-
-import f00f.net.irc.martyr.InCommand;
-
-public class LUserMeReply extends GenericStringReply
-{
-
- public LUserMeReply()
- {
- }
-
- public LUserMeReply( String string )
- {
- super( string );
- }
-
- public String getIrcIdentifier()
- {
- return "255";
- }
-
- public InCommand parse( String prefix, String identifier, String params )
- {
- return new LUserMeReply( getParameter( params, 1 ) );
- }
-
-}
-