@@ -396,13 +396,17 @@ return hash; } - (OFString*)description { - OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; + OFAutoreleasePool *pool; OFMutableString *ret; + if ([array count] == 0) + return @"()"; + + pool = [[OFAutoreleasePool alloc] init]; ret = [[self componentsJoinedByString: @",\n"] mutableCopy]; @try { [ret prependString: @"(\n"]; [ret replaceOccurrencesOfString: @"\n"