@@ -22,15 +22,10 @@ #import "common.h" @implementation OFWriteFailedException - (OFString*)description { - if (_description != nil) - return _description; - - _description = [[OFString alloc] initWithFormat: + return [OFString stringWithFormat: @"Failed to write %zu bytes in class %@! " ERRFMT, _requestedLength, _inClass, ERRPARAM]; - - return _description; } @end