summaryrefslogtreecommitdiff
path: root/tools/split-select/Main.cpp
diff options
context:
space:
mode:
author Tomasz Wasilczyk <twasilczyk@google.com> 2023-09-06 18:54:36 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2023-09-06 18:54:36 +0000
commit4dc044986487e3df8e309c7b9cce5fbe5694eed7 (patch)
treeccff814da135202ae0fbebe005a82a827f5c37e5 /tools/split-select/Main.cpp
parent4fb86ec92a08a65e2ab52f8e361edb15b380cfc4 (diff)
parentaf3d4530d8b6b833fb071ee35078170104b7d9ce (diff)
Merge "Migrate String8|16.setTo to assignment operator" into main am: c01e3ba035 am: 1ca55b9eb9 am: 6fd58092f6 am: af3d4530d8
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2724077 Change-Id: I23209be097511bfb4f4f6236ffad072833cb6a45 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.cpp4
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") {