@@ -162,7 +162,7 @@ BOOL FIRDLOSVersionSupported(NSString *_Nullable systemVersion, NSString *minSup
162
162
return [systemVersion compare: minSupportedVersion options: NSNumericSearch] != NSOrderedAscending;
163
163
}
164
164
165
- NSDate *_Nullable FIRDLAppInstallationDate () {
165
+ NSDate *_Nullable FIRDLAppInstallationDate (void ) {
166
166
NSURL *documentsDirectoryURL =
167
167
[[[NSFileManager defaultManager ] URLsForDirectory: NSApplicationSupportDirectory
168
168
inDomains: NSUserDomainMask] firstObject ];
@@ -178,7 +178,7 @@ BOOL FIRDLOSVersionSupported(NSString *_Nullable systemVersion, NSString *minSup
178
178
return nil ;
179
179
}
180
180
181
- NSString *FIRDLDeviceModelName () {
181
+ NSString *FIRDLDeviceModelName (void ) {
182
182
// this method will return string like iPad3,3
183
183
// for Simulator this will be x86_64
184
184
static NSString *machineString = @" " ;
@@ -199,17 +199,17 @@ BOOL FIRDLOSVersionSupported(NSString *_Nullable systemVersion, NSString *minSup
199
199
return machineString;
200
200
}
201
201
202
- NSString *FIRDLDeviceLocale () {
202
+ NSString *FIRDLDeviceLocale (void ) {
203
203
// expected return value from this method looks like: @"en-US"
204
204
return [[[NSLocale currentLocale ] localeIdentifier ] stringByReplacingOccurrencesOfString: @" _"
205
205
withString: @" -" ];
206
206
}
207
207
208
- NSString *FIRDLDeviceLocaleRaw () {
208
+ NSString *FIRDLDeviceLocaleRaw (void ) {
209
209
return [[NSLocale currentLocale ] localeIdentifier ];
210
210
}
211
211
212
- NSString *FIRDLDeviceTimezone () {
212
+ NSString *FIRDLDeviceTimezone (void ) {
213
213
NSString *timeZoneName = [[NSTimeZone localTimeZone ] name ];
214
214
return timeZoneName;
215
215
}
0 commit comments