@@ -65,25 +65,17 @@ class FirestoreInternal {
6565 explicit FirestoreInternal (App* app);
6666 ~FirestoreInternal ();
6767
68- App* app () const {
69- return app_;
70- }
68+ App* app () const { return app_; }
7169
7270 // Whether this object was successfully initialized by the constructor.
73- bool initialized () const {
74- return app_ != nullptr ;
75- }
71+ bool initialized () const { return app_ != nullptr ; }
7672
7773 // Manages all Future objects returned from Firestore API.
78- FutureManager& future_manager () {
79- return future_manager_;
80- }
74+ FutureManager& future_manager () { return future_manager_; }
8175
8276 // When this is deleted, it will clean up all DatabaseReferences,
8377 // DataSnapshots, and other such objects.
84- CleanupNotifier& cleanup () {
85- return cleanup_;
86- }
78+ CleanupNotifier& cleanup () { return cleanup_; }
8779
8880 // Returns a CollectionReference that refers to the specific path.
8981 CollectionReference Collection (const char * collection_path) const ;
@@ -159,12 +151,8 @@ class FirestoreInternal {
159151 firestore_public_ = firestore_public;
160152 }
161153
162- Firestore* firestore_public () {
163- return firestore_public_;
164- }
165- const Firestore* firestore_public () const {
166- return firestore_public_;
167- }
154+ Firestore* firestore_public () { return firestore_public_; }
155+ const Firestore* firestore_public () const { return firestore_public_; }
168156
169157 /* *
170158 * Finds the FirestoreInternal instance for the given Java Firestore instance.
0 commit comments