@@ -59,20 +59,15 @@ [super dealloc]; } - (OFString*)description { - if (_description != nil) - return _description; - - _description = [[OFString alloc] initWithFormat: + return [OFString stringWithFormat: @"Joining a thread of class %@ failed! Most likely, another thread " @"already waits for the thread to join.", _inClass]; - - return _description; } - (OFThread*)thread { OF_GETTER(_thread, NO) } @end