mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
NSNull: Implement valueForUndefinedKey and return [NSNull null]
This commit is contained in:
parent
08858caf29
commit
61bb82e902
1 changed files with 4 additions and 0 deletions
|
@ -87,6 +87,10 @@ static NSNull *null = 0;
|
|||
return @"<null>";
|
||||
}
|
||||
|
||||
- (id) valueForUndefinedKey: (NSString*)aKey {
|
||||
return null;
|
||||
}
|
||||
|
||||
- (void) encodeWithCoder: (NSCoder*)aCoder
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue