@@ -19,25 +19,25 @@ #import "OFString.h" @implementation OFAlreadyConnectedException @synthesize socket = _socket; -+ (instancetype)exceptionWithSocket: (id)socket ++ (instancetype)exceptionWithSocket: (id)sock { - return [[[self alloc] initWithSocket: socket] autorelease]; + return [[[self alloc] initWithSocket: sock] autorelease]; } - (instancetype)init { return [self initWithSocket: nil]; } -- (instancetype)initWithSocket: (id)socket +- (instancetype)initWithSocket: (id)sock { self = [super init]; - _socket = [socket retain]; + _socket = [sock retain]; return self; } - (void)dealloc