Skip to content

Commit e95066c

Browse files
committed
AggregateField.java: remove CountAggregateField.upTo, since it's never used in this prototype
1 parent 57aa89b commit e95066c

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

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

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
package com.google.firebase.firestore;
1616

1717
import androidx.annotation.NonNull;
18-
import androidx.annotation.Nullable;
1918

2019
public abstract class AggregateField {
2120

@@ -27,13 +26,6 @@ public static CountAggregateField count() {
2726
}
2827

2928
public static final class CountAggregateField extends AggregateField {
30-
31-
@Nullable private Integer upTo;
32-
3329
CountAggregateField() {}
34-
35-
CountAggregateField(@Nullable Integer upTo) {
36-
this.upTo = upTo;
37-
}
3830
}
3931
}

0 commit comments

Comments
 (0)