Remove currently unused parameter from event.
[xudocci.git] / src / main / java / net / pterodactylus / irc / event / NoNicknameGivenReceived.java
index aba2fb2..9733ada 100644 (file)
@@ -25,18 +25,16 @@ import net.pterodactylus.irc.Reply;
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
-public class NoNicknameGivenReceived extends AbstractReplyEvent {
+public class NoNicknameGivenReceived extends AbstractConnectionEvent {
 
        /**
         * Creates a new no nickname given event.
         *
         * @param connection
         *              The connection the event occured on
-        * @param reply
-        *              The reply that caused the event
         */
-       public NoNicknameGivenReceived(Connection connection, Reply reply) {
-               super(connection, reply);
+       public NoNicknameGivenReceived(Connection connection) {
+               super(connection);
        }
 
 }