diff options
Diffstat (limited to 'runtime/string_builder_append.cc')
-rw-r--r-- | runtime/string_builder_append.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/string_builder_append.cc b/runtime/string_builder_append.cc index 5a34e9368a..85b70eb12b 100644 --- a/runtime/string_builder_append.cc +++ b/runtime/string_builder_append.cc @@ -355,7 +355,7 @@ ObjPtr<mirror::String> StringBuilderAppend::AppendF(uint32_t format, return nullptr; } gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator(); - ObjPtr<mirror::String> result = mirror::String::Alloc</*kIsInstrumented=*/ true>( + ObjPtr<mirror::String> result = mirror::String::Alloc( self, length_with_flag, allocator_type, builder); return result; |