diff options
author | Elliott Hughes <enh@google.com> | 2021-04-06 16:49:39 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2021-04-07 22:38:20 +0000 |
commit | 016beb8559c27f5ce8f4467def164ff6a395fc3a (patch) | |
tree | d77d127158ca5b563c072230e5f13337019adfc1 /libutils/String16_fuzz.cpp | |
parent | 99037347d61884ee83e48f004d6152d4730a350d (diff) |
Remove String16::makeLower().
If you need to do a case transformation for a Unicode string, you need
to use icu4c. This only worked for ASCII, which is just silly. Luckily
it doesn't seem to be used anywhere.
Test: treehugger
Change-Id: I4a864823ec35a0b57b50909587cc3efac3f531a7
Merged-In: I4a864823ec35a0b57b50909587cc3efac3f531a7
Diffstat (limited to 'libutils/String16_fuzz.cpp')
-rw-r--r-- | libutils/String16_fuzz.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libutils/String16_fuzz.cpp b/libutils/String16_fuzz.cpp index 63c280071..defa0f5a6 100644 --- a/libutils/String16_fuzz.cpp +++ b/libutils/String16_fuzz.cpp @@ -34,11 +34,6 @@ std::vector<std::function<void(FuzzedDataProvider&, android::String16, android:: str1.size(); }), - // Casing - ([](FuzzedDataProvider&, android::String16 str1, android::String16) -> void { - str1.makeLower(); - }), - // Comparison ([](FuzzedDataProvider&, android::String16 str1, android::String16 str2) -> void { str1.startsWith(str2); |