mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
Return nil for several -notImplemented methods that are to return objects.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1151 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
de0f2e6372
commit
6f575ef4c9
1 changed files with 3 additions and 0 deletions
|
@ -244,6 +244,7 @@ static BOOL debug_coder = NO;
|
|||
- (NSData*) decodeDataObject
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
return nil;
|
||||
}
|
||||
|
||||
- (id) decodeObject
|
||||
|
@ -257,6 +258,7 @@ static BOOL debug_coder = NO;
|
|||
- (id) decodePropertyList
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
return nil;
|
||||
}
|
||||
|
||||
- (NSPoint) decodePoint
|
||||
|
@ -364,6 +366,7 @@ static BOOL debug_coder = NO;
|
|||
- (NSMutableData*) archiverData
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
return nil;
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue