mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
Remove uneeded encoding/decoding methods in GormDocument
This commit is contained in:
parent
ee2bd354da
commit
d56e7083c5
2 changed files with 4 additions and 2 deletions
|
@ -57,7 +57,7 @@
|
|||
}
|
||||
@end
|
||||
|
||||
@interface GormDocument : NSDocument <IBDocuments, GSNibContainer, NSCoding>
|
||||
@interface GormDocument : NSDocument <IBDocuments, GSNibContainer> // , NSCoding>
|
||||
{
|
||||
GormClassManager *classManager;
|
||||
GormFilesOwner *filesOwner;
|
||||
|
|
|
@ -3519,6 +3519,7 @@ static void _real_close(GormDocument *self,
|
|||
return isOlderArchive;
|
||||
}
|
||||
|
||||
/*
|
||||
- (void) encodeWithCoder: (NSCoder *)coder
|
||||
{
|
||||
[coder encodeObject: topLevelObjects];
|
||||
|
@ -3536,7 +3537,8 @@ static void _real_close(GormDocument *self,
|
|||
|
||||
return self;
|
||||
}
|
||||
|
||||
*/
|
||||
|
||||
- (void) awakeWithContext: (NSDictionary *)context
|
||||
{
|
||||
NSEnumerator *en = [connections objectEnumerator];
|
||||
|
|
Loading…
Reference in a new issue