Change exception raised by a couple of methods.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2894 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1998-08-01 21:40:50 +00:00
parent 929fbc4e17
commit eab7b60ea6

View file

@ -115,13 +115,13 @@ static Class NSCountedSet_concrete_class;
- initWithCoder: aCoder - initWithCoder: aCoder
{ {
[self notImplemented:_cmd]; [self subclassResponsibility:_cmd];
return self; return nil;
} }
- (void) encodeWithCoder: aCoder - (void) encodeWithCoder: aCoder
{ {
[self notImplemented:_cmd]; [self subclassResponsibility:_cmd];
} }
@end @end