diff options
author | 2017-03-24 15:21:34 +0000 | |
---|---|---|
committer | 2017-03-24 15:27:20 -0700 | |
commit | 2f814aab42591b7b4093d79851d9d2920538a5ef (patch) | |
tree | 7ff34f1d63f8520208dd4689171968bbc59f983b /runtime/mirror/class_ext.cc | |
parent | a7c04c4fe6623985ba2d0cca942d5e1e584f4358 (diff) |
Revert "Revert "Make original dex file be more deduplicated""
This reverts commit a7c04c4fe6623985ba2d0cca942d5e1e584f4358.
Reason for revert: Issue with target buildbots was fixed
Test: m clean && ./test.py --target -j8
Bug: 31455788
Change-Id: If00ef9433a9308810a40ea4e0d809987c934cef8
Diffstat (limited to 'runtime/mirror/class_ext.cc')
-rw-r--r-- | runtime/mirror/class_ext.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/mirror/class_ext.cc b/runtime/mirror/class_ext.cc index 5dc3aca094..94e4b88f6c 100644 --- a/runtime/mirror/class_ext.cc +++ b/runtime/mirror/class_ext.cc @@ -117,9 +117,9 @@ void ClassExt::SetVerifyError(ObjPtr<Object> err) { } } -void ClassExt::SetOriginalDexFileBytes(ObjPtr<ByteArray> bytes) { +void ClassExt::SetOriginalDexFile(ObjPtr<Object> bytes) { DCHECK(!Runtime::Current()->IsActiveTransaction()); - SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(ClassExt, original_dex_file_bytes_), bytes); + SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(ClassExt, original_dex_file_), bytes); } void ClassExt::SetClass(ObjPtr<Class> dalvik_system_ClassExt) { |