File tree 4 files changed +10
-10
lines changed 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 48
48
#import " Firestore/Source/Core/FSTFirestoreClient.h"
49
49
#import " Firestore/Source/Local/FSTLevelDB.h"
50
50
51
- #import " Firestore/Example/Tests/Util/FSTEventAccumulator.h"
52
51
#import " Firestore/Example/Tests/Util/FIRFirestore+Testing.h"
52
+ #import " Firestore/Example/Tests/Util/FSTEventAccumulator.h"
53
53
54
54
#include " Firestore/core/src/firebase/firestore/util/async_queue.h"
55
55
#include " Firestore/core/src/firebase/firestore/util/executor_libdispatch.h"
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ @implementation FIRFirestore {
89
89
FSTFirestoreClient *_client;
90
90
}
91
91
92
- - (AsyncQueue*)workerQueue {
92
+ - (AsyncQueue *)workerQueue {
93
93
return [_client workerQueue ];
94
94
}
95
95
Original file line number Diff line number Diff line change @@ -55,13 +55,13 @@ NS_ASSUME_NONNULL_BEGIN
55
55
*
56
56
* All callbacks and events will be triggered on the provided userExecutor.
57
57
*/
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 ;
65
65
66
66
- (instancetype )init __attribute__((unavailable(" Use static constructor method." )));
67
67
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ - (Executor *)userExecutor {
103
103
return _userExecutor.get ();
104
104
}
105
105
106
- - (AsyncQueue*)workerQueue {
106
+ - (AsyncQueue *)workerQueue {
107
107
return _workerQueue.get ();
108
108
}
109
109
You can’t perform that action at this time.
0 commit comments