Skip to content

Commit 8458189

Browse files
committed
style.sh
1 parent c989a7b commit 8458189

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Firestore/Example/Tests/Util/FSTIntegrationTestCase.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@
4848
#import "Firestore/Source/Core/FSTFirestoreClient.h"
4949
#import "Firestore/Source/Local/FSTLevelDB.h"
5050

51-
#import "Firestore/Example/Tests/Util/FSTEventAccumulator.h"
5251
#import "Firestore/Example/Tests/Util/FIRFirestore+Testing.h"
52+
#import "Firestore/Example/Tests/Util/FSTEventAccumulator.h"
5353

5454
#include "Firestore/core/src/firebase/firestore/util/async_queue.h"
5555
#include "Firestore/core/src/firebase/firestore/util/executor_libdispatch.h"

Firestore/Source/API/FIRFirestore.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ @implementation FIRFirestore {
8989
FSTFirestoreClient *_client;
9090
}
9191

92-
- (AsyncQueue*)workerQueue {
92+
- (AsyncQueue *)workerQueue {
9393
return [_client workerQueue];
9494
}
9595

Firestore/Source/Core/FSTFirestoreClient.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ NS_ASSUME_NONNULL_BEGIN
5555
*
5656
* All callbacks and events will be triggered on the provided userExecutor.
5757
*/
58-
+ (instancetype)clientWithDatabaseInfo:(const firebase::firestore::core::DatabaseInfo &)databaseInfo
59-
usePersistence:(BOOL)usePersistence
60-
credentialsProvider:(firebase::firestore::auth::CredentialsProvider *)
61-
credentialsProvider // no passing ownership
62-
userExecutor:
63-
(std::unique_ptr<firebase::firestore::util::Executor>)userExecutor
64-
workerQueue:(std::unique_ptr<firebase::firestore::util::AsyncQueue>)workerQueue;
58+
+ (instancetype)
59+
clientWithDatabaseInfo:(const firebase::firestore::core::DatabaseInfo &)databaseInfo
60+
usePersistence:(BOOL)usePersistence
61+
credentialsProvider:(firebase::firestore::auth::CredentialsProvider *)
62+
credentialsProvider // no passing ownership
63+
userExecutor:(std::unique_ptr<firebase::firestore::util::Executor>)userExecutor
64+
workerQueue:(std::unique_ptr<firebase::firestore::util::AsyncQueue>)workerQueue;
6565

6666
- (instancetype)init __attribute__((unavailable("Use static constructor method.")));
6767

Firestore/Source/Core/FSTFirestoreClient.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ - (Executor *)userExecutor {
103103
return _userExecutor.get();
104104
}
105105

106-
- (AsyncQueue*)workerQueue {
106+
- (AsyncQueue *)workerQueue {
107107
return _workerQueue.get();
108108
}
109109

0 commit comments

Comments
 (0)