Code cleanup

This commit is contained in:
Gregory John Casamento 2021-05-07 06:52:14 -04:00
parent d56e7083c5
commit 49b98e385d
2 changed files with 1 additions and 21 deletions

View file

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

View file

@ -3518,26 +3518,6 @@ static void _real_close(GormDocument *self,
{
return isOlderArchive;
}
/*
- (void) encodeWithCoder: (NSCoder *)coder
{
[coder encodeObject: topLevelObjects];
[coder encodeObject: nameTable];
[coder encodeObject: visibleWindows];
[coder encodeObject: connections];
}
- (id) initWithCoder: (NSCoder *)coder
{
ASSIGN(topLevelObjects, [coder decodeObject]);
ASSIGN(nameTable, [coder decodeObject]);
ASSIGN(visibleWindows, [coder decodeObject]);
ASSIGN(connections, [coder decodeObject]);
return self;
}
*/
- (void) awakeWithContext: (NSDictionary *)context
{