summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserOpReply.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserOpReply.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserOpReply.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserOpReply.java b/EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserOpReply.java
deleted file mode 100644
index b05efedc1..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserOpReply.java
+++ /dev/null
@@ -1,36 +0,0 @@
-package f00f.net.irc.martyr.replies;
-
-import f00f.net.irc.martyr.InCommand;
-
-public class LUserOpReply extends GenericStringReply
-{
-
- private int numOps;
-
- public LUserOpReply()
- {
- }
-
- public LUserOpReply( int ops, String string )
- {
- super( string );
- this.numOps = ops;
- }
-
- public String getIrcIdentifier()
- {
- return "252";
- }
-
- public InCommand parse( String prefix, String identifier, String params )
- {
- return new LUserOpReply( getIntParameter( params, 1, -1 ), getParameter( params, 2 ) );
- }
-
- public int getNumOps()
- {
- return numOps;
- }
-
-}
-