diff options
Diffstat (limited to 'runtime/class_linker.cc')
-rw-r--r-- | runtime/class_linker.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index 08cc153d84..501470c4b5 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -6403,7 +6403,7 @@ bool ClassLinker::LinkClass(Thread* self, const ObjPtr<mirror::ClassLoader> class_loader = h_new_class.Get()->GetClassLoader(); ClassTable* const table = InsertClassTableForClassLoader(class_loader); const ObjPtr<mirror::Class> existing = - table->UpdateClass(descriptor, h_new_class.Get(), ComputeModifiedUtf8Hash(descriptor)); + table->UpdateClass(h_new_class.Get(), ComputeModifiedUtf8Hash(descriptor)); CHECK_EQ(existing, klass.Get()); WriteBarrierOnClassLoaderLocked(class_loader, h_new_class.Get()); } |