diff options
Diffstat (limited to 'runtime/debugger.cc')
-rw-r--r-- | runtime/debugger.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/debugger.cc b/runtime/debugger.cc index c042d19b71..02fb5b6da4 100644 --- a/runtime/debugger.cc +++ b/runtime/debugger.cc @@ -1375,7 +1375,7 @@ JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_ if (c->IsStringClass()) { // Special case for java.lang.String. gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator(); - new_object = mirror::String::AllocEmptyString<true>(self, allocator_type); + new_object = mirror::String::AllocEmptyString(self, allocator_type); } else { new_object = c->AllocObject(self); } @@ -1404,7 +1404,7 @@ JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t Thread* self = Thread::Current(); gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator(); ObjPtr<mirror::Array> new_array = - mirror::Array::Alloc<true>(self, c, length, c->GetComponentSizeShift(), allocator_type); + mirror::Array::Alloc(self, c, length, c->GetComponentSizeShift(), allocator_type); if (new_array == nullptr) { DCHECK(self->IsExceptionPending()); self->ClearException(); |