aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/third_party/Immutable/FSTImmutableSortedDictionary.h
diff options
context:
space:
mode:
authorGravatar Gil <mcg@google.com>2018-02-01 07:55:49 -0800
committerGravatar GitHub <noreply@github.com>2018-02-01 07:55:49 -0800
commit515625c47fab947f82d7f8fc8daef885e56a7df6 (patch)
tree2a0eea9158134c3dbaf950953a86e2841e101bfc /Firestore/third_party/Immutable/FSTImmutableSortedDictionary.h
parentac3052223465ce654457fec17b34f27de1706e57 (diff)
Remove predecessorKey,Object,Document, etc (#735)
This is dead code. I think it was probably useful in the RTDB because of the way it notified of changes, but we give changes with indexes in Firestore so I think we don't need it.
Diffstat (limited to 'Firestore/third_party/Immutable/FSTImmutableSortedDictionary.h')
-rw-r--r--Firestore/third_party/Immutable/FSTImmutableSortedDictionary.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/Firestore/third_party/Immutable/FSTImmutableSortedDictionary.h b/Firestore/third_party/Immutable/FSTImmutableSortedDictionary.h
index a2264ec..cbb4da3 100644
--- a/Firestore/third_party/Immutable/FSTImmutableSortedDictionary.h
+++ b/Firestore/third_party/Immutable/FSTImmutableSortedDictionary.h
@@ -71,14 +71,6 @@ extern const int kSortedDictionaryArrayToRBTreeSizeThreshold;
- (ValueType)objectForKeyedSubscript:(KeyType)key;
/**
- * Gets the key before the given key in sorted order.
- *
- * @param key The key to look before.
- * @return The key before the given one.
- */
-- (nullable KeyType)predecessorKey:(KeyType)key;
-
-/**
* Returns the index of the key or NSNotFound if the key is not found.
*
* @param key The key to return the index for.