Skip to content

Commit

Permalink
Style
Browse files Browse the repository at this point in the history
  • Loading branch information
ncooke3 committed May 29, 2024
1 parent 6c09e45 commit a028437
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion GoogleUtilities/Environment/GULAppEnvironmentUtil.m
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,9 @@ + (NSString *)applePlatform {
if (@available(iOS 14.0, *)) {
// Early iOS 14 betas do not include isiOSAppOnMac (#6969)
applePlatform = ([[NSProcessInfo processInfo] respondsToSelector:@selector(isiOSAppOnMac)] &&
[NSProcessInfo processInfo].isiOSAppOnMac) ? @"ios_on_mac" : @"ios";
[NSProcessInfo processInfo].isiOSAppOnMac)
? @"ios_on_mac"
: @"ios";
} else {
applePlatform = @"ios";
}
Expand Down

0 comments on commit a028437

Please sign in to comment.