@@ -21,16 +21,16 @@ #import "OFThread.h" @implementation OFThreadStartFailedException @synthesize thread = _thread; -+ (instancetype)exceptionWithThread: (OFThread*)thread ++ (instancetype)exceptionWithThread: (OFThread *)thread { return [[[self alloc] initWithThread: thread] autorelease]; } -- initWithThread: (OFThread*)thread +- initWithThread: (OFThread *)thread { self = [super init]; _thread = [thread retain]; @@ -42,14 +42,14 @@ [_thread release]; [super dealloc]; } -- (OFString*)description +- (OFString *)description { if (_thread != nil) return [OFString stringWithFormat: @"Starting a thread of type %@ failed!", [_thread class]]; else return @"Starting a thread failed!"; } @end