@@ -160,7 +160,6 @@ - (id)copyWithZone:(NSZone *)zone {
160160 FIROptions *newOptions = [(FIROptions *)[[self class ] allocWithZone: zone]
161161 initInternalWithOptionsDictionary: self .optionsDictionary];
162162 if (newOptions) {
163- newOptions->_deepLinkURLScheme = self->_deepLinkURLScheme ;
164163 newOptions.appGroupID = self.appGroupID ;
165164 newOptions.editingLocked = self.isEditingLocked ;
166165 newOptions.usingOptionsFromDefaultPlist = self.usingOptionsFromDefaultPlist ;
@@ -315,11 +314,6 @@ - (void)setStorageBucket:(NSString *)storageBucket {
315314 _optionsDictionary[kFIRStorageBucket ] = [storageBucket copy ];
316315}
317316
318- - (void )setDeepLinkURLScheme : (NSString *)deepLinkURLScheme {
319- [self checkEditingLocked ];
320- _deepLinkURLScheme = [deepLinkURLScheme copy ];
321- }
322-
323317- (NSString *)bundleID {
324318 return self.optionsDictionary [kFIRBundleID ];
325319}
@@ -357,11 +351,6 @@ - (BOOL)isEqualToOptions:(FIROptions *)options {
357351
358352 // Validate extra properties not contained in the dictionary. Only validate it if one of the
359353 // objects has the property set.
360- if ((options->_deepLinkURLScheme != nil || self->_deepLinkURLScheme != nil ) &&
361- ![options->_deepLinkURLScheme isEqualToString: self ->_deepLinkURLScheme]) {
362- return NO ;
363- }
364-
365354 if ((options.appGroupID != nil || self.appGroupID != nil ) &&
366355 ![options.appGroupID isEqualToString: self .appGroupID]) {
367356 return NO ;
@@ -384,7 +373,7 @@ - (NSUInteger)hash {
384373 // Note: `self.analyticsOptionsDictionary` was left out here since it solely relies on the
385374 // contents of the main bundle's `Info.plist`. We should avoid reading that file and the contents
386375 // should be identical.
387- return self.optionsDictionary .hash ^ self-> _deepLinkURLScheme . hash ^ self .appGroupID .hash ;
376+ return self.optionsDictionary .hash ^ self.appGroupID .hash ;
388377}
389378
390379#pragma mark - Internal instance methods
0 commit comments