Skip to content

Commit 7ea3c34

Browse files
committed
Update TargetData.java
1 parent 9e7023d commit 7ea3c34

File tree

1 file changed

+2
-2
lines changed
  • firebase-firestore/src/main/java/com/google/firebase/firestore/local

1 file changed

+2
-2
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/local/TargetData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public TargetData withSequenceNumber(long sequenceNumber) {
9494
snapshotVersion,
9595
lastLimboFreeSnapshotVersion,
9696
resumeToken,
97-
/* expectedCount= */ null);
97+
expectedCount);
9898
}
9999

100100
/** Creates a new target data instance with an updated resume token and snapshot version. */
@@ -107,7 +107,7 @@ public TargetData withResumeToken(ByteString resumeToken, SnapshotVersion snapsh
107107
snapshotVersion,
108108
lastLimboFreeSnapshotVersion,
109109
resumeToken,
110-
expectedCount);
110+
/* expectedCount= */ null);
111111
}
112112

113113
/** Creates a new target data instance with an updated expected count. */

0 commit comments

Comments
 (0)