We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57aa89b commit e95066cCopy full SHA for e95066c
firebase-firestore/src/main/java/com/google/firebase/firestore/AggregateField.java
@@ -15,7 +15,6 @@
15
package com.google.firebase.firestore;
16
17
import androidx.annotation.NonNull;
18
-import androidx.annotation.Nullable;
19
20
public abstract class AggregateField {
21
@@ -27,13 +26,6 @@ public static CountAggregateField count() {
27
26
}
28
29
public static final class CountAggregateField extends AggregateField {
30
-
31
- @Nullable private Integer upTo;
32
33
CountAggregateField() {}
34
35
- CountAggregateField(@Nullable Integer upTo) {
36
- this.upTo = upTo;
37
- }
38
39
0 commit comments