Changed some notImplemented to subclassResponsiblity.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@643 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-10-30 00:58:18 +00:00
parent 44448e6e85
commit 4a6c1baac6

View file

@ -134,7 +134,7 @@ static Class NSMutableSet_concrete_class;
- initWithObjects: (id*)objects
count: (unsigned)count
{
[self notImplemented:_cmd];
[self subclassResponsibility:_cmd];
return 0;
}
@ -366,12 +366,12 @@ static Class NSMutableSet_concrete_class;
- (void) removeAllObjects
{
[self notImplemented:_cmd];
[self subclassResponsibility:_cmd];
}
- (void) removeObject: anObject
{
[self notImplemented:_cmd];
[self subclassResponsibility:_cmd];
}
@end