Minor cleanup

This commit is contained in:
Gregory John Casamento 2020-11-15 00:15:11 -05:00
parent c486e7c14d
commit f04f8536ec

View file

@ -55,12 +55,11 @@
if (self != nil)
{
NSMutableArray *mutableRows = [rows mutableCopy];
FOR_IN(NSMutableArray*, array, mutableRows)
FOR_IN(NSMutableArray*, array, rows)
{
[_rows addObject: array];
}
END_FOR_IN(mutableRows);
END_FOR_IN(rows);
}
return self;