mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 18:21:04 +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
198e30beb0
commit
f09bd1f0ba
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue