Add set/get for requiresSecureCoding

This commit is contained in:
Gregory John Casamento 2020-05-15 10:06:39 -04:00
parent 1a6a091fc4
commit 4230180eab
2 changed files with 16 additions and 3 deletions

View file

@ -367,12 +367,12 @@ static NSMapTable *globalClassMap = 0;
- (BOOL)requiresSecureCoding
{
return NO;
return _requiresSecureCoding;
}
- (void)setRequiresSecureCoding: (BOOL)secure
{
return;
_requiresSecureCoding = secure;
}
- (Class) classForClassName: (NSString*)aString