mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 17:51:01 +00:00
([NSString -cString]): Use -subclassResponsibility: instead of
-notImplemented: ([NSString -cStringLength]): Likewise. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@638 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c20c33ea5f
commit
cb455b5536
1 changed files with 2 additions and 2 deletions
|
@ -600,13 +600,13 @@ static Class NSMutableString_c_concrete_class;
|
|||
|
||||
- (const char*) cString
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
[self subclassResponsibility:_cmd];
|
||||
return NULL;
|
||||
}
|
||||
|
||||
- (unsigned int) cStringLength
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
[self subclassResponsibility:_cmd];
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue