@@ -160,7 +160,7 @@ - (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 ;
163
+ newOptions-> _deepLinkURLScheme = self-> _deepLinkURLScheme ;
164
164
newOptions.appGroupID = self.appGroupID ;
165
165
newOptions.editingLocked = self.isEditingLocked ;
166
166
newOptions.usingOptionsFromDefaultPlist = self.usingOptionsFromDefaultPlist ;
@@ -357,8 +357,8 @@ - (BOOL)isEqualToOptions:(FIROptions *)options {
357
357
358
358
// Validate extra properties not contained in the dictionary. Only validate it if one of the
359
359
// objects has the property set.
360
- if ((options. deepLinkURLScheme != nil || self. deepLinkURLScheme != nil ) &&
361
- ![options.deepLinkURLScheme isEqualToString: self .deepLinkURLScheme ]) {
360
+ if ((options-> _deepLinkURLScheme != nil || self-> _deepLinkURLScheme != nil ) &&
361
+ ![options->_deepLinkURLScheme isEqualToString: self ->_deepLinkURLScheme ]) {
362
362
return NO ;
363
363
}
364
364
@@ -384,7 +384,7 @@ - (NSUInteger)hash {
384
384
// Note: `self.analyticsOptionsDictionary` was left out here since it solely relies on the
385
385
// contents of the main bundle's `Info.plist`. We should avoid reading that file and the contents
386
386
// should be identical.
387
- return self.optionsDictionary .hash ^ self. deepLinkURLScheme .hash ^ self.appGroupID .hash ;
387
+ return self.optionsDictionary .hash ^ self-> _deepLinkURLScheme .hash ^ self.appGroupID .hash ;
388
388
}
389
389
390
390
#pragma mark - Internal instance methods
0 commit comments