Skip to content

Commit 2d25442

Browse files
committed
Pretty
1 parent 9958236 commit 2d25442

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

firestore/src/android/filter_android.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ StaticMethod<Object> kOr(
8989
"or",
9090
"([Lcom/google/firebase/firestore/Filter;)"
9191
"Lcom/google/firebase/firestore/Filter;");
92-
}
92+
} // namespace
9393

9494
void FilterInternal::Initialize(jni::Loader& loader) {
9595
loader.LoadClass(
@@ -204,7 +204,7 @@ Filter FilterInternal::Where(const StaticMethod<Object>& method,
204204

205205
bool operator==(const FilterInternal& lhs, const FilterInternal& rhs) {
206206
return jni::EqualityCompareJni(lhs, rhs);
207-
} // namespace
207+
}
208208

209209
} // namespace firestore
210210
} // namespace firebase

firestore/src/android/query_android.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ Query QueryInternal::Where(const firebase::firestore::Filter& filter) const {
165165
Env env = GetEnv();
166166
Local<Object> query = env.Call(obj_, kWhere, filter.internal_->ToJava());
167167
return firestore_->NewQuery(env, query);
168-
169168
}
170169

171170
Query QueryInternal::WhereEqualTo(const FieldPath& field,

0 commit comments

Comments
 (0)