@@ -160,7 +160,6 @@ - (id)copyWithZone:(NSZone *)zone {
160
160
FIROptions *newOptions = [(FIROptions *)[[self class ] allocWithZone: zone]
161
161
initInternalWithOptionsDictionary: self .optionsDictionary];
162
162
if (newOptions) {
163
- newOptions->_deepLinkURLScheme = self->_deepLinkURLScheme ;
164
163
newOptions.appGroupID = self.appGroupID ;
165
164
newOptions.editingLocked = self.isEditingLocked ;
166
165
newOptions.usingOptionsFromDefaultPlist = self.usingOptionsFromDefaultPlist ;
@@ -315,11 +314,6 @@ - (void)setStorageBucket:(NSString *)storageBucket {
315
314
_optionsDictionary[kFIRStorageBucket ] = [storageBucket copy ];
316
315
}
317
316
318
- - (void )setDeepLinkURLScheme : (NSString *)deepLinkURLScheme {
319
- [self checkEditingLocked ];
320
- _deepLinkURLScheme = [deepLinkURLScheme copy ];
321
- }
322
-
323
317
- (NSString *)bundleID {
324
318
return self.optionsDictionary [kFIRBundleID ];
325
319
}
@@ -357,11 +351,6 @@ - (BOOL)isEqualToOptions:(FIROptions *)options {
357
351
358
352
// Validate extra properties not contained in the dictionary. Only validate it if one of the
359
353
// objects has the property set.
360
- if ((options->_deepLinkURLScheme != nil || self->_deepLinkURLScheme != nil ) &&
361
- ![options->_deepLinkURLScheme isEqualToString: self ->_deepLinkURLScheme]) {
362
- return NO ;
363
- }
364
-
365
354
if ((options.appGroupID != nil || self.appGroupID != nil ) &&
366
355
![options.appGroupID isEqualToString: self .appGroupID]) {
367
356
return NO ;
@@ -384,7 +373,7 @@ - (NSUInteger)hash {
384
373
// Note: `self.analyticsOptionsDictionary` was left out here since it solely relies on the
385
374
// contents of the main bundle's `Info.plist`. We should avoid reading that file and the contents
386
375
// should be identical.
387
- return self.optionsDictionary .hash ^ self-> _deepLinkURLScheme . hash ^ self .appGroupID .hash ;
376
+ return self.optionsDictionary .hash ^ self.appGroupID .hash ;
388
377
}
389
378
390
379
#pragma mark - Internal instance methods
0 commit comments