File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -787,13 +787,13 @@ - (NSMutableDictionary *)persistenceDict {
787787 NSError *error = nil ;
788788 NSData *data = [NSData dataWithContentsOfURL: self .class.URLForPrefsFile options: 0 error: &error];
789789 if (!error && data) {
790- if (@available (iOS 11.0 , tvOS 11.0 , *)) {
791- persistenceDict = [NSKeyedUnarchiver unarchivedObjectOfClass: [BNCServerRequest class ] fromData: data error: NULL ];
792- } else {
793- #if __IPHONE_OS_VERSION_MIN_REQUIRED < 12000
790+ // if (@available(iOS 11.0, tvOS 11.0, *)) {
791+ // persistenceDict = [NSKeyedUnarchiver unarchivedObjectOfClass:[NSMutableDictionary class] fromData:data error:NULL];
792+ // } else {
793+ // #if __IPHONE_OS_VERSION_MIN_REQUIRED < 12000
794794 persistenceDict = [NSKeyedUnarchiver unarchiveObjectWithData: data];
795- #endif
796- }
795+ // #endif
796+ // }
797797 }
798798 }
799799 @catch (NSException *) {
You can’t perform that action at this time.
0 commit comments