diff options
author | 2023-10-13 16:32:09 +0000 | |
---|---|---|
committer | 2023-10-16 12:40:31 +0000 | |
commit | 4b7aef13e87be3e35de747fb10845057f9ddb712 (patch) | |
tree | 5e8a2311d2055d7556d7db25b1363db88b5ebff2 /runtime/class_linker_test.cc | |
parent | a51744169fcc555158068183eae6e1a88483592a (diff) |
Revert^2 "Remove size argument from DexFile constructors."
This reverts commit 26b99c916496abf14a2fd87290720742328462fa.
Reason for revert: Reland
Change-Id: Ifc9418a5c76d9d4252c661efe7c13d45ae8810a2
Diffstat (limited to 'runtime/class_linker_test.cc')
-rw-r--r-- | runtime/class_linker_test.cc | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/runtime/class_linker_test.cc b/runtime/class_linker_test.cc index cc43888505..605b1c4ef6 100644 --- a/runtime/class_linker_test.cc +++ b/runtime/class_linker_test.cc @@ -1546,12 +1546,8 @@ TEST_F(ClassLinkerTest, RegisterDexFileName) { auto container = std::make_shared<MemoryDexFileContainer>(old_dex_file->Begin(), old_dex_file->Size()); - std::unique_ptr<DexFile> dex_file(new StandardDexFile(old_dex_file->Begin(), - old_dex_file->Size(), - location->ToModifiedUtf8(), - 0u, - nullptr, - std::move(container))); + std::unique_ptr<DexFile> dex_file(new StandardDexFile( + old_dex_file->Begin(), location->ToModifiedUtf8(), 0u, nullptr, std::move(container))); // Make a copy of the dex cache with changed name. dex_cache.Assign(class_linker->AllocAndInitializeDexCache(Thread::Current(), *dex_file, |