@@ -184,11 +184,11 @@ /* We don't really care, as we only made it smaller */ [e dealloc]; } } -- (id)copy +- copy { OFDataArray *new = [[OFDataArray alloc] initWithItemSize: itemsize]; [new addNItems: count fromCArray: data]; @@ -354,15 +354,15 @@ data = [self resizeMemory: data toSize: nsize]; size = nsize; } -- (id)copy +- copy { OFDataArray *new = [[OFBigDataArray alloc] initWithItemSize: itemsize]; [new addNItems: count fromCArray: data]; return new; } @end