summaryrefslogtreecommitdiff
path: root/libutils/String8_fuzz.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2021-04-14 17:36:36 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-04-14 17:36:36 +0000
commit450f66bd8fbd0e5f13ddb40365ef1eb48d61db29 (patch)
tree7974b6e79a0ba88666352515dbf9df250083b8e6 /libutils/String8_fuzz.cpp
parent664f9cd068d775020b600910ef0307a39eb79dcc (diff)
parent9434f59c178ed8fddb96159101e8bb6d09ddf6d6 (diff)
Merge "Remove String8::toUpper()."
Diffstat (limited to 'libutils/String8_fuzz.cpp')
-rw-r--r--libutils/String8_fuzz.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/libutils/String8_fuzz.cpp b/libutils/String8_fuzz.cpp
index b02683c42..a45d67514 100644
--- a/libutils/String8_fuzz.cpp
+++ b/libutils/String8_fuzz.cpp
@@ -42,9 +42,6 @@ std::vector<std::function<void(FuzzedDataProvider*, android::String8*, android::
// Casing
[](FuzzedDataProvider*, android::String8* str1, android::String8*) -> void {
- str1->toUpper();
- },
- [](FuzzedDataProvider*, android::String8* str1, android::String8*) -> void {
str1->toLower();
},
[](FuzzedDataProvider*, android::String8* str1, android::String8* str2) -> void {