(encodeWithCoder:, initWithCoder:): Include call to super since

NSObject now implements these methods.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@402 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1995-04-20 21:50:04 +00:00
parent ed025f5a9b
commit ff7e6221b0
6 changed files with 12 additions and 13 deletions

View file

@ -159,12 +159,12 @@
- (void)encodeWithCoder:(NSCoder *)coder
{
//FIXME [super encodeWithCoder:coder];
[super encodeWithCoder:coder];
}
- (id)initWithCoder:(NSCoder *)coder
{
//FIXME self = [super initWithCoder:coder];
self = [super initWithCoder:coder];
return self;
}