@@ -356,12 +356,11 @@ if (iter->next != NULL) [ret appendString: @",\n"]; objc_autoreleasePoolPop(pool); } - [ret replaceOccurrencesOfString: @"\n" - withString: @"\n\t"]; + [ret replaceOccurrencesOfString: @"\n" withString: @"\n\t"]; [ret appendString: @"\n]"]; [ret makeImmutable]; return ret; @@ -414,13 +413,13 @@ return count; } - (OFEnumerator *)objectEnumerator { - return [[[OFListEnumerator alloc] - initWithList: self - mutationsPointer: &_mutations] autorelease]; + return [[[OFListEnumerator alloc] initWithList: self + mutationsPointer: &_mutations] + autorelease]; } @end @implementation OFListEnumerator - (instancetype)initWithList: (OFList *)list