Index: src/IRCConnection.m ================================================================== --- src/IRCConnection.m +++ src/IRCConnection.m @@ -527,28 +527,25 @@ [pool release]; } - (BOOL)connection: (OFTCPSocket*)connection didReceiveISO88591Line: (OFString*)line - context: (id)context exception: (OFException*)exception { if (line != nil) { [self IRC_processLine: line]; [sock asyncReadLineWithTarget: self selector: @selector(connection: - didReceiveLine:context: - exception:) - context: nil]; + didReceiveLine: + exception:)]; } return NO; } - (BOOL)connection: (OFTCPSocket*)connection didReceiveLine: (OFString*)line - context: (id)context exception: (OFException*)exception { if (line != nil) { [self IRC_processLine: line]; return YES; @@ -557,22 +554,20 @@ if ([exception isKindOfClass: [OFInvalidEncodingException class]]) [sock asyncReadLineWithEncoding: OF_STRING_ENCODING_ISO_8859_1 target: self selector: @selector(connection: didReceiveISO88591Line: - context:exception:) - context: nil]; + exception:)]; return NO; } - (void)handleConnection { [sock asyncReadLineWithTarget: self selector: @selector(connection:didReceiveLine: - context:exception:) - context: nil]; + exception:)]; } - (void)dealloc { [sock release];