diff options
Diffstat (limited to 'runtime/class_table.h')
-rw-r--r-- | runtime/class_table.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/class_table.h b/runtime/class_table.h index 1c9b0ce2e9..3374622f00 100644 --- a/runtime/class_table.h +++ b/runtime/class_table.h @@ -187,9 +187,7 @@ class ClassTable { REQUIRES_SHARED(Locks::mutator_lock_); // Update a class in the table with the new class. Returns the existing class which was replaced. - ObjPtr<mirror::Class> UpdateClass(const char* descriptor, - ObjPtr<mirror::Class> new_klass, - size_t hash) + ObjPtr<mirror::Class> UpdateClass(ObjPtr<mirror::Class> new_klass, size_t hash) REQUIRES(!lock_) REQUIRES_SHARED(Locks::mutator_lock_); |