summaryrefslogtreecommitdiff
path: root/src/object_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/object_utils.h')
-rw-r--r--src/object_utils.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/object_utils.h b/src/object_utils.h
index 661773a346..6924f4eb21 100644
--- a/src/object_utils.h
+++ b/src/object_utils.h
@@ -677,14 +677,6 @@ class MethodHelper {
return s;
}
- Class* ResolveClass(uint16_t type_idx) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
- Class* c = GetDexCacheResolvedType(type_idx);
- if (UNLIKELY(c == NULL)) {
- c = GetClassLinker()->ResolveType(GetDexFile(), type_idx, GetDexCache(), GetClassLoader());
- }
- return c;
- }
-
private:
// Set the method_ field, for proxy methods looking up the interface method via the resolved
// methods table.