aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-11-30 16:25:23 -0800
committerGravatar GitHub <noreply@github.com>2017-11-30 16:25:23 -0800
commitf8b22fa78c29984cba5f10a5cc85e4ea3290943a (patch)
treec5c9879eca895458fa4961b3b5bd047577068bdd /Firestore/Source
parent30f0c656c52488689352791188fed731adeffb6b (diff)
Fix long line and run style (#517)
Diffstat (limited to 'Firestore/Source')
-rw-r--r--Firestore/Source/Auth/FSTCredentialsProvider.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/Firestore/Source/Auth/FSTCredentialsProvider.m b/Firestore/Source/Auth/FSTCredentialsProvider.m
index 57d79cb..653d7ff 100644
--- a/Firestore/Source/Auth/FSTCredentialsProvider.m
+++ b/Firestore/Source/Auth/FSTCredentialsProvider.m
@@ -83,7 +83,8 @@ NS_ASSUME_NONNULL_BEGIN
NSDictionary *userInfo = notification.userInfo;
// ensure we're only notifiying for the current app.
- FIRApp *notifiedApp = userInfo[FIRAuthStateDidChangeInternalNotificationAppKey];
+ FIRApp *notifiedApp =
+ userInfo[FIRAuthStateDidChangeInternalNotificationAppKey];
if (![self.app isEqual:notifiedApp]) {
return;
}