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:
mccallum 1995-10-30 00:58:18 +00:00
parent 198e30beb0
commit f09bd1f0ba

View file

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