From 75079582eff294dcb0e73e96d83bf261df38f1d9 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 31 Oct 2010 12:13:45 -0400 Subject: [PATCH] Rename |-connectInternal| to |-connectionThreadStart|. --- Source/DebuggerConnection.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/DebuggerConnection.m b/Source/DebuggerConnection.m index ac08ae3..5a55a29 100644 --- a/Source/DebuggerConnection.m +++ b/Source/DebuggerConnection.m @@ -34,7 +34,7 @@ @property NSUInteger lastWrittenTransaction; @property (retain) NSMutableArray* queuedWrites; -- (void)connectInternal; +- (void)connectionThreadStart; - (void)socketDidAccept; - (void)socketDisconnected; @@ -220,13 +220,13 @@ void SocketAcceptCallback(CFSocketRef socket, */ - (void)connect { - [NSThread detachNewThreadSelector:@selector(connectInternal) toTarget:self withObject:nil]; + [NSThread detachNewThreadSelector:@selector(connectionThreadStart) toTarget:self withObject:nil]; } /** * Creates, connects to, and schedules a CFSocket. */ -- (void)connectInternal +- (void)connectionThreadStart { NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init]; -- 2.22.5