Remove objectAtIndex: from strings

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@7453 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 2000-09-08 18:04:51 +00:00
parent cfd21aadff
commit a1ee0df583
3 changed files with 5 additions and 19 deletions

View file

@ -558,12 +558,6 @@ static IMP msInitImp; /* designated initialiser for mutable */
return NO;
}
- (id) objectAtIndex: (unsigned)index
{
CHECK_INDEX_RANGE_ERROR(index, _count);
return [NSNumber numberWithChar: _contents_chars[index]];
}
- (int) _baseLength
{
return _count;