@@ -21,16 +21,16 @@ #import "OFCondition.h" @implementation OFConditionStillWaitingException @synthesize condition = _condition; -+ (instancetype)exceptionWithCondition: (OFCondition*)condition ++ (instancetype)exceptionWithCondition: (OFCondition *)condition { return [[[self alloc] initWithCondition: condition] autorelease]; } -- initWithCondition: (OFCondition*)condition +- initWithCondition: (OFCondition *)condition { self = [super init]; _condition = [condition retain]; @@ -42,11 +42,11 @@ [_condition release]; [super dealloc]; } -- (OFString*)description +- (OFString *)description { if (_condition != nil) return [OFString stringWithFormat: @"Deallocation of a condition of type %@ was tried, even " "though a thread was still waiting for it!",