aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Core/FIRApp.m
diff options
context:
space:
mode:
authorGravatar Benoit St-Pierre <bstpierre@google.com>2018-02-26 15:58:37 -0500
committerGravatar Benoit St-Pierre <bstpierre@google.com>2018-02-26 15:58:37 -0500
commit3d03426e0e6fad888174c104e583b1e2438d1876 (patch)
tree54ceea8734dbed36ec77b05405b55e5290e52975 /Firebase/Core/FIRApp.m
parent3f4757923eaec02851fc7afbf4fe3ac7583ada08 (diff)
Style fixes
Diffstat (limited to 'Firebase/Core/FIRApp.m')
-rw-r--r--Firebase/Core/FIRApp.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Firebase/Core/FIRApp.m b/Firebase/Core/FIRApp.m
index 5a2ec78..c2ce28e 100644
--- a/Firebase/Core/FIRApp.m
+++ b/Firebase/Core/FIRApp.m
@@ -428,8 +428,8 @@ static NSMutableDictionary *sLibraryVersions;
NSMutableArray<NSString *> *libraries =
[[NSMutableArray<NSString *> alloc] initWithCapacity:sLibraryVersions.count];
for (NSString *libraryName in sLibraryVersions) {
- [libraries addObject:
- [NSString stringWithFormat:@"%@/%@", libraryName, sLibraryVersions[libraryName]]];
+ [libraries
+ addObject:[NSString stringWithFormat:@"%@/%@", libraryName, sLibraryVersions[libraryName]]];
}
[libraries sortUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
return [libraries componentsJoinedByString:@" "];