summaryrefslogtreecommitdiff
path: root/runtime/mirror/string-inl.h
diff options
context:
space:
mode:
author Orion Hodson <oth@google.com> 2021-10-26 14:12:40 +0000
committer Orion Hodson <oth@google.com> 2021-10-27 09:31:23 +0000
commit48fb9f43a81fa0cab09ed4a4f3d478c1a0ecbe9e (patch)
treeefb8c5b83a8c2dddf88590fab45680108b9efb95 /runtime/mirror/string-inl.h
parent58ebded1817e4d95a3006c3274f2fb589207748c (diff)
Revert "OpenJDK 11: Add String.repeat()"
This reverts commit d1da3ae0aa3ddde0b129364b5e1c6073f7bdb7b7. Reason for revert: breakage in b/203790937 Bug: 203790937 Bug: 202962059 Test: treehugger Change-Id: I07b6fbfe79a599abd9aa98a1dcab918a74d4b816
Diffstat (limited to 'runtime/mirror/string-inl.h')
-rw-r--r--runtime/mirror/string-inl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/mirror/string-inl.h b/runtime/mirror/string-inl.h
index b5b9c71de9..dd280364e1 100644
--- a/runtime/mirror/string-inl.h
+++ b/runtime/mirror/string-inl.h
@@ -35,9 +35,9 @@ inline uint32_t String::ClassSize(PointerSize pointer_size) {
// lambda$codePoints$1$CharSequence
// which were virtual functions in standalone desugar, becomes
// direct functions with D8 desugaring.
- uint32_t vtable_entries = Object::kVTableLength + 55;
+ uint32_t vtable_entries = Object::kVTableLength + 54;
#else
- uint32_t vtable_entries = Object::kVTableLength + 57;
+ uint32_t vtable_entries = Object::kVTableLength + 56;
#endif
return Class::ComputeClassSize(true, vtable_entries, 0, 0, 0, 1, 2, pointer_size);
}