diff options
author | 2023-09-06 16:40:21 +0000 | |
---|---|---|
committer | 2023-09-06 16:40:21 +0000 | |
commit | 1ca55b9eb9a7772e183fbb93c0a29edea3cd4a66 (patch) | |
tree | 2e3302f0eac9bc7f01e0146571a42f69770fdd2f /tools/split-select/Main.cpp | |
parent | 0cfc1c6dddcc94b931a88c741eb99848b7741a6d (diff) | |
parent | c01e3ba0358b8c9b442c76a6758e4a9b712ae32f (diff) |
Merge "Migrate String8|16.setTo to assignment operator" into main am: c01e3ba035
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2724077
Change-Id: I4b4032ff4145ac6aa328723dd73151e1e7a021a5
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'tools/split-select/Main.cpp')
-rw-r--r-- | tools/split-select/Main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/split-select/Main.cpp b/tools/split-select/Main.cpp index 1e751171b370..73bfa19a051a 100644 --- a/tools/split-select/Main.cpp +++ b/tools/split-select/Main.cpp @@ -257,7 +257,7 @@ static int main(int argc, char** argv) { usage(); return 1; } - targetConfigStr.setTo(*argv); + targetConfigStr = *argv; } else if (arg == "--split") { argc--; argv++; @@ -281,7 +281,7 @@ static int main(int argc, char** argv) { usage(); return 1; } - baseApkPath.setTo(*argv); + baseApkPath = *argv; } else if (arg == "--generate") { generateFlag = true; } else if (arg == "--help") { |