Skip to content

Commit b9265f1

Browse files
committed
minor clarification to javadocs for equals()
1 parent 1580215 commit b9265f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/AggregateQuery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public Task<AggregateQuerySnapshot> get(@NonNull AggregateSource source) {
7878
* <ol>
7979
* <li>{@code object} is a non-null instance of {@link AggregateQuery}.
8080
* <li>{@code object} performs the same aggregations as this {@link AggregateQuery}.
81-
* <li>{@code object} has the same underlying {@link Query} as this {@link AggregateQuery}.
81+
* <li>The underlying {@link Query} of {@code object} compares equal to that of this object.
8282
* </ol>
8383
*
8484
* @param object The object to compare to this object for equality.

firebase-firestore/src/main/java/com/google/firebase/firestore/AggregateQuerySnapshot.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public long getCount() {
5656
*
5757
* <ol>
5858
* <li>{@code object} is a non-null instance of {@link AggregateQuerySnapshot}.
59-
* <li>{@code object} has the same {@link AggregateQuery} as this object.
59+
* <li>The {@link AggregateQuery} of {@code object} compares equal to that of this object.
6060
* <li>{@code object} has the same results as this object.
6161
* </ol>
6262
*

0 commit comments

Comments
 (0)