aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Core/FIROptions.m
diff options
context:
space:
mode:
authorGravatar Marek Gilbert <mcg@google.com>2017-08-02 09:30:15 -0700
committerGravatar Marek Gilbert <mcg@google.com>2017-08-02 09:52:48 -0700
commite4af03818cacb91466af842d972280e84293977b (patch)
tree7a106280a927d4e17a4040b246941ffc852bd15b /Firebase/Core/FIROptions.m
parent8d55eb92a42217d4d3399d8cbb49e6e8a98d209f (diff)
Formatting updates based on the latest clang-format
clang-format version 5.0.0 (tags/google/stable/2017-06-22)
Diffstat (limited to 'Firebase/Core/FIROptions.m')
-rw-r--r--Firebase/Core/FIROptions.m19
1 files changed, 11 insertions, 8 deletions
diff --git a/Firebase/Core/FIROptions.m b/Firebase/Core/FIROptions.m
index b2bdce8..8832d20 100644
--- a/Firebase/Core/FIROptions.m
+++ b/Firebase/Core/FIROptions.m
@@ -39,10 +39,11 @@ NSString *const kFIRIsAnalyticsEnabled = @"IS_ANALYTICS_ENABLED";
NSString *const kFIRIsSignInEnabled = @"IS_SIGNIN_ENABLED";
// Library version ID.
-NSString *const kFIRLibraryVersionID = @"4" // Major version (one or more digits)
- @"00" // Minor version (exactly 2 digits)
- @"04" // Build number (exactly 2 digits)
- @"000"; // Fixed "000"
+NSString *const kFIRLibraryVersionID =
+ @"4" // Major version (one or more digits)
+ @"00" // Minor version (exactly 2 digits)
+ @"04" // Build number (exactly 2 digits)
+ @"000"; // Fixed "000"
// Plist file name.
NSString *const kServiceInfoFileName = @"GoogleService-Info";
// Plist file type.
@@ -105,8 +106,9 @@ static NSDictionary *sDefaultOptionsDictionary = nil;
}
sDefaultOptionsDictionary = [NSDictionary dictionaryWithContentsOfFile:plistFilePath];
if (sDefaultOptionsDictionary == nil) {
- FIRLogError(kFIRLoggerCore, @"I-COR000011", @"The configuration file is not a dictionary: "
- @"'%@.%@'.",
+ FIRLogError(kFIRLoggerCore, @"I-COR000011",
+ @"The configuration file is not a dictionary: "
+ @"'%@.%@'.",
kServiceInfoFileName, kServiceInfoFileType);
}
return sDefaultOptionsDictionary;
@@ -203,8 +205,9 @@ static NSDictionary *sDefaultOptionsDictionary = nil;
}
_optionsDictionary = [[NSDictionary dictionaryWithContentsOfFile:plistPath] mutableCopy];
if (_optionsDictionary == nil) {
- FIRLogError(kFIRLoggerCore, @"I-COR000014", @"The configuration file at %@ does not exist or "
- @"is not a well-formed plist file.",
+ FIRLogError(kFIRLoggerCore, @"I-COR000014",
+ @"The configuration file at %@ does not exist or "
+ @"is not a well-formed plist file.",
plistPath);
return nil;
}