Quick fix for initWithCapacity: not working on CPMutableArray.

Reviewed by me.
This commit is contained in:
Francisco Ryan Tolmasky I
2011-01-18 13:25:43 -08:00
parent 818bf475f2
commit 00915083d4
3 changed files with 13 additions and 2 deletions
+2 -2
View File
@@ -29,10 +29,10 @@
Initializes an array able to store at least \c aCapacity items. Because CPArray
is backed by JavaScript arrays, this method ends up simply returning a regular array.
*/
- (id)initWithCapacity:(unsigned)aCapacity
/*- (id)initWithCapacity:(unsigned)aCapacity
{
return self;
}
}*/
// Adding and replacing objects
/*!