Remove uneeded encoding/decoding methods in GormDocument

This commit is contained in:
Gregory John Casamento 2021-05-07 00:11:51 -04:00
parent ee2bd354da
commit d56e7083c5
2 changed files with 4 additions and 2 deletions

View file

@ -57,7 +57,7 @@
}
@end
@interface GormDocument : NSDocument <IBDocuments, GSNibContainer, NSCoding>
@interface GormDocument : NSDocument <IBDocuments, GSNibContainer> // , NSCoding>
{
GormClassManager *classManager;
GormFilesOwner *filesOwner;

View file

@ -3519,6 +3519,7 @@ static void _real_close(GormDocument *self,
return isOlderArchive;
}
/*
- (void) encodeWithCoder: (NSCoder *)coder
{
[coder encodeObject: topLevelObjects];
@ -3536,6 +3537,7 @@ static void _real_close(GormDocument *self,
return self;
}
*/
- (void) awakeWithContext: (NSDictionary *)context
{