From d3e75efdb713e33a2b24bab3dd0fa8480bc5e72f Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Tue, 18 Jun 2013 01:44:55 -0400 Subject: [PATCH] ProtocolClient was both a superclass and a member. Fix. --- Source/NetworkConnection.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/NetworkConnection.mm b/Source/NetworkConnection.mm index 3530729..8d38a70 100644 --- a/Source/NetworkConnection.mm +++ b/Source/NetworkConnection.mm @@ -43,9 +43,9 @@ - (id)initWithPort:(NSUInteger)aPort { - if (self = [super init]) { + if (self = [super initWithDelegate:self]) { port_ = aPort; - _ideClient = [[ProtocolClient alloc] initWithDelegate:self]; + _ideClient = self; } return self; } -- 2.22.5