@@ -179,12 +179,11 @@ } return self; } -- (instancetype)initWithKey: (id)firstKey - arguments: (va_list)arguments +- (instancetype)initWithKey: (id)firstKey arguments: (va_list)arguments { self = [super init]; @try { va_list argumentsCopy; @@ -352,12 +351,11 @@ keys[i++] = (id)*keyPtr; } objc_autoreleasePoolPop(pool); - ret = [OFArray arrayWithObjects: keys - count: count]; + ret = [OFArray arrayWithObjects: keys count: count]; } @finally { free(keys); } return ret; @@ -386,12 +384,11 @@ objects[i++] = (id)*objectPtr; } objc_autoreleasePoolPop(pool); - ret = [OFArray arrayWithObjects: objects - count: count]; + ret = [OFArray arrayWithObjects: objects count: count]; } @finally { free(objects); } return ret;