@@ -21,16 +21,16 @@ #import "OFThread.h" @implementation OFThreadStillRunningException @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,11 +42,11 @@ [_thread release]; [super dealloc]; } -- (OFString*)description +- (OFString *)description { if (_thread) return [OFString stringWithFormat: @"Deallocation of a thread of type %@ was tried, even " @"though it was still running!",