diff options
author | Paul Beusterien <paulbeusterien@google.com> | 2017-12-04 08:52:11 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-04 08:52:11 -0800 |
commit | ed3e4982f9f0194851509603e5e649e5152ba897 (patch) | |
tree | 54ebe2c13463ed0c45d3fc55f654ee6c41cf8589 /Firestore | |
parent | 9c08142051f522c6214337470b870919c30a6192 (diff) |
Standardize cross module imports with angle bracket syntax (#526)
Qualify all cross-pod imports of FirebaseCore headers
Diffstat (limited to 'Firestore')
-rw-r--r-- | Firestore/Source/Remote/FSTStream.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Firestore/Source/Remote/FSTStream.m b/Firestore/Source/Remote/FSTStream.m index 21b343a..2c039be 100644 --- a/Firestore/Source/Remote/FSTStream.m +++ b/Firestore/Source/Remote/FSTStream.m @@ -516,7 +516,7 @@ static const NSTimeInterval kIdleTimeout = 60.0; - (void)handleStreamClose:(nullable NSError *)error { FSTLog(@"%@ %p close: %@", NSStringFromClass([self class]), (__bridge void *)self, error); - if (![self isStarted]) { // The stream could have already been closed by the idle close timer. + if (![self isStarted]) { // The stream could have already been closed by the idle close timer. FSTLog(@"%@ Ignoring server close for already closed stream.", NSStringFromClass([self class])); return; } |