mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
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:
parent
44448e6e85
commit
4a6c1baac6
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue