summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/replies/NamesEndReply.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/replies/NamesEndReply.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/replies/NamesEndReply.java47
1 files changed, 0 insertions, 47 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/NamesEndReply.java b/EssentialsUpdate/src/f00f/net/irc/martyr/replies/NamesEndReply.java
deleted file mode 100644
index a0605b5bd..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/NamesEndReply.java
+++ /dev/null
@@ -1,47 +0,0 @@
-package f00f.net.irc.martyr.replies;
-
-import f00f.net.irc.martyr.InCommand;
-
-public class NamesEndReply extends GenericReply
-{
-
- private String channel;
- private String comment;
-
- /** For use as a factory. */
- public NamesEndReply()
- {
- this( null, null );
- }
-
- public NamesEndReply( String channel, String comment )
- {
- this.channel = channel;
- this.comment = comment;
- }
-
- public String getIrcIdentifier()
- {
- return "366";
- }
-
- public InCommand parse( String prefix, String identifier, String params )
- {
- return new NamesEndReply( getParameter( params, 1 ), getParameter( params, 2 ) );
- }
-
- public String getChannel()
- {
- return channel;
- }
-
- public String getComment()
- {
- return comment;
- }
-
-}
-
-
-
-