diff options
author | 2023-08-31 10:05:54 +0000 | |
---|---|---|
committer | 2023-08-31 10:05:54 +0000 | |
commit | e5ee511172be798f860ea7a61858037f75903d36 (patch) | |
tree | 9a50936c2c02aaa2ac05c221d659e85787741305 /tools/split-select/SplitDescription.cpp | |
parent | 9d0bcc2935d9c8633d5423ab2fb1ff14b2d1f446 (diff) | |
parent | 2ce9592378ced7688e6107791de219139d0f231d (diff) |
Merge "Migrate from android::String isEmpty to empty [aapt]" into main am: 2ce9592378
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2725659
Change-Id: I138a5369aebbe74737992252c2b1fac6cf4ce16f
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'tools/split-select/SplitDescription.cpp')
-rw-r--r-- | tools/split-select/SplitDescription.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/split-select/SplitDescription.cpp b/tools/split-select/SplitDescription.cpp index 4e2b48e1f450..71500080193f 100644 --- a/tools/split-select/SplitDescription.cpp +++ b/tools/split-select/SplitDescription.cpp @@ -70,7 +70,7 @@ bool SplitDescription::match(const SplitDescription& o) const { String8 SplitDescription::toString() const { String8 extension; if (abi != abi::Variant_none) { - if (extension.isEmpty()) { + if (extension.empty()) { extension.append(":"); } else { extension.append("-"); |