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:
Andrew McCallum 1996-03-18 13:42:32 +00:00
parent de0f2e6372
commit 6f575ef4c9

View file

@ -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