aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Core/Public/FIRApp.h
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-07-27 11:02:39 -0700
committerGravatar GitHub <noreply@github.com>2017-07-27 11:02:39 -0700
commit0abd3444344ea134b0593fcaaf428e82cd190e12 (patch)
tree2a3edd3751d3de661fe1a12c6e5b2aa4e10bb110 /Firebase/Core/Public/FIRApp.h
parent94dd3c50ad22533f97f59988a1dc01277f29ed6d (diff)
Add clang-format options and script; apply to FirebaseCore (#151)
Diffstat (limited to 'Firebase/Core/Public/FIRApp.h')
-rw-r--r--Firebase/Core/Public/FIRApp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Firebase/Core/Public/FIRApp.h b/Firebase/Core/Public/FIRApp.h
index 8f52e1a..712781f 100644
--- a/Firebase/Core/Public/FIRApp.h
+++ b/Firebase/Core/Public/FIRApp.h
@@ -75,8 +75,8 @@ FIR_SWIFT_NAME(FirebaseApp)
Letters, Numbers and Underscore.
* @param options The Firebase application options used to configure the services.
*/
-+ (void)configureWithName:(NSString *)name options:(FIROptions *)options
- FIR_SWIFT_NAME(configure(name:options:));
++ (void)configureWithName:(NSString *)name
+ options:(FIROptions *)options FIR_SWIFT_NAME(configure(name:options:));
/**
* Returns the default app, or nil if the default app does not exist.
@@ -94,13 +94,13 @@ FIR_SWIFT_NAME(FirebaseApp)
* Returns the set of all extant FIRApp instances, or nil if there are no FIRApp instances. This
* method is thread safe.
*/
-@property(class, readonly, nullable) NSDictionary <NSString *, FIRApp *> *allApps;
+@property(class, readonly, nullable) NSDictionary<NSString *, FIRApp *> *allApps;
#else
/**
* Returns the set of all extant FIRApp instances, or nil if there are no FIRApp instances. This
* method is thread safe.
*/
-+ (nullable NSDictionary <NSString *, FIRApp *> *)allApps FIR_SWIFT_NAME(allApps());
++ (nullable NSDictionary<NSString *, FIRApp *> *)allApps FIR_SWIFT_NAME(allApps());
#endif // defined(__IPHONE_10_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
/**