summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListStartReply.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListStartReply.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListStartReply.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListStartReply.java b/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListStartReply.java
deleted file mode 100644
index 0f00d6c3f..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListStartReply.java
+++ /dev/null
@@ -1,31 +0,0 @@
-package f00f.net.irc.martyr.replies;
-
-import f00f.net.irc.martyr.InCommand;
-
-/**
- * Signals the beginning of a LIST response.
- *
- * @author Daniel Henninger
- */
-public class ListStartReply extends GenericReply
-{
-
- /**
- * Factory constructor.
- */
- public ListStartReply()
- {
- }
-
- public String getIrcIdentifier()
- {
- return "321";
- }
-
- public InCommand parse( String prefix, String identifier, String params )
- {
- return new ListStartReply();
- }
-
-}
-