@@ -175,16 +175,16 @@ return [[OFArray alloc] initWithArray: self]; } - (void)addObject: (id)object { - [self addObject: object - atIndex: [self count]]; + [self insertObject: object + atIndex: [self count]]; } -- (void)addObject: (id)object - atIndex: (size_t)index +- (void)insertObject: (id)object + atIndex: (size_t)index { @throw [OFNotImplementedException exceptionWithClass: isa selector: _cmd]; }