diff options
author | 2022-04-12 11:27:34 +0100 | |
---|---|---|
committer | 2022-04-12 13:22:19 +0000 | |
commit | 7a0478394749f206544fb86841bd6c62dc87f005 (patch) | |
tree | 900f6067114bf7897cb1c6ee939db3121f0badba /runtime/class_table.h | |
parent | 53258d07c179d8530adcf8c73848e114830c913c (diff) |
dex2oat: Faster class pruning.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 181943478
Change-Id: I0f4facc13ded5e5a5755fe9bec1c32449049129a
Diffstat (limited to 'runtime/class_table.h')
-rw-r--r-- | runtime/class_table.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/class_table.h b/runtime/class_table.h index 4c5fc62b2d..3377f14b4a 100644 --- a/runtime/class_table.h +++ b/runtime/class_table.h @@ -220,11 +220,6 @@ class ClassTable { REQUIRES(!lock_) REQUIRES_SHARED(Locks::mutator_lock_); - // Returns true if the class was found and removed, false otherwise. - bool Remove(const char* descriptor) - REQUIRES(!lock_) - REQUIRES_SHARED(Locks::mutator_lock_); - // Return true if we inserted the strong root, false if it already exists. bool InsertStrongRoot(ObjPtr<mirror::Object> obj) REQUIRES(!lock_) |