[NSArray lastObject] is already defined; no need for our own version.

This commit is contained in:
smfr%smfr.org 2005-11-13 04:48:33 +00:00
Родитель 40f98299ee
Коммит 7038613018
2 изменённых файлов: 0 добавлений и 9 удалений

Просмотреть файл

@ -41,7 +41,6 @@
@interface NSArray(CaminoNSArrayUtils)
- (id)firstObject;
- (id)lastObject;
// just returns nil if out of range, rather than throwing.
- (id)safeObjectAtIndex:(unsigned)inIndex;

Просмотреть файл

@ -47,14 +47,6 @@
return nil;
}
- (id)lastObject
{
if ([self count] > 0)
return [self objectAtIndex:[self count] - 1];
return nil;
}
- (id)safeObjectAtIndex:(unsigned)inIndex
{
return (inIndex < [self count]) ? [self objectAtIndex:inIndex] : nil;