@@ -36,11 +36,11 @@ - (instancetype)init { self = [super init]; if (!of_mutex_new(&_mutex)) { - Class c = [self class]; + Class c = self.class; [self release]; @throw [OFInitializationFailedException exceptionWithClass: c]; } _initialized = true; @@ -77,11 +77,10 @@ } - (OFString *)description { if (_name == nil) - return [super description]; + return super.description; - return [OFString stringWithFormat: @"<%@: %@>", - [self className], _name]; + return [OFString stringWithFormat: @"<%@: %@>", self.className, _name]; } @end