diff options
author | 2024-05-10 07:50:01 +0000 | |
---|---|---|
committer | 2024-05-10 08:54:41 +0000 | |
commit | 7929d1d111e7cc0a2025b97f59e7e04ea09b3ff4 (patch) | |
tree | 693339a00e30a978c364543ad2d0e30e11f5ff3f /runtime/class_linker.h | |
parent | dbef48883e284def3e12d1ef69480d642d3b280f (diff) |
Revert "Workaround for b/336842546"
This reverts commit a4ac01044c50f4da02c40b8da5520d2eb65b41d9.
Bug: 336842546
Bug: 73760543
Reason for revert: Fix for the bug has been submitted. CL also has an issue with thread suspension.
Change-Id: I06785d58f3e473a13e18876e481fff9118851f53
Diffstat (limited to 'runtime/class_linker.h')
-rw-r--r-- | runtime/class_linker.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/class_linker.h b/runtime/class_linker.h index 7f53ca6e93..eabfb4926a 100644 --- a/runtime/class_linker.h +++ b/runtime/class_linker.h @@ -339,8 +339,8 @@ class EXPORT ClassLinker { // Look up a previously resolved method with the given index. ArtMethod* LookupResolvedMethod(uint32_t method_idx, - Handle<mirror::DexCache> dex_cache, - Handle<mirror::ClassLoader> class_loader) + ObjPtr<mirror::DexCache> dex_cache, + ObjPtr<mirror::ClassLoader> class_loader) REQUIRES_SHARED(Locks::mutator_lock_); // Find a method with the given index from class `klass`, and update the dex cache. |