Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 113bcc85c487451afa7c3f747e9c625b26bcdb64..3ad02ab5a2a812893034695fb9daa2af9d769539 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -4203,10 +4203,6 @@ class ObjectHashTable: public HashTable<ObjectHashTable, |
// returned in case the key is not present. |
Object* Lookup(Handle<Object> key); |
- int FindEntry(Handle<Object> key); |
- // TODO(ishell): Remove this when all the callers are handlified. |
- int FindEntry(Object* key); |
- |
// Adds (or overwrites) the value associated with the given key. Mapping a |
// key to the hole value causes removal of the whole entry. |
static Handle<ObjectHashTable> Put(Handle<ObjectHashTable> table, |
@@ -4432,11 +4428,7 @@ class WeakHashTable: public HashTable<WeakHashTable, |
// Looks up the value associated with the given key. The hole value is |
// returned in case the key is not present. |
- Object* Lookup(Object* key); |
- |
- int FindEntry(Handle<Object> key); |
- // TODO(ishell): Remove this when all the callers are handlified. |
- int FindEntry(Object* key); |
+ Object* Lookup(Handle<Object> key); |
// Adds (or overwrites) the value associated with the given key. Mapping a |
// key to the hole value causes removal of the whole entry. |