summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListEndReply.java
blob: 6a0b1ca7f3f372d961f5d496f30565aac0166f68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package f00f.net.irc.martyr.replies;

import f00f.net.irc.martyr.InCommand;

/**
 * Signals the end of a LIST response.
 *
 * @author Daniel Henninger
 */
public class ListEndReply extends GenericReply
{

    /**
	 * Factory constructor.
	 */
	public ListEndReply()
    {
	}

    public String getIrcIdentifier()
    {
		return "323";
	}

    public InCommand parse( String prefix, String identifier, String params )
    {
		return new ListEndReply();
	}

}