Skip to content

Commit 522ce69

Browse files
Remove comment that is not applicable (#3345)
1 parent 6090f1e commit 522ce69

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/index/FirestoreIndexValueWriter.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,6 @@ public class FirestoreIndexValueWriter {
5252

5353
private FirestoreIndexValueWriter() {}
5454

55-
// The write methods below short-circuit writing terminators for values containing a (terminating)
56-
// truncated value.
57-
//
58-
// As an example, consider the resulting encoding for:
59-
//
60-
// ["bar", [2, "foo"]] -> (STRING, "bar", TERM, ARRAY, NUMBER, 2, STRING, "foo", TERM, TERM, TERM)
61-
// ["bar", [2, truncated("foo")]] -> (STRING, "bar", TERM, ARRAY, NUMBER, 2, STRING, "foo", TRUNC)
62-
// ["bar", truncated(["foo"])] -> (STRING, "bar", TERM, ARRAY. STRING, "foo", TERM, TRUNC)
63-
6455
/** Writes an index value. */
6556
public void writeIndexValue(Value value, DirectionalIndexByteEncoder encoder) {
6657
writeIndexValueAux(value, encoder);

0 commit comments

Comments
 (0)