From: 이형주/Common Platform Lab(SR)/삼성전자 Date: Thu, 24 Feb 2022 03:31:35 +0000 (+0900) Subject: Remove ICULoadDisable support from platform image. (#391) X-Git-Tag: accepted/tizen/unified/20220224.125720^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1728c1c4d384c5f3fcd2bc89e654bc984ef82351;p=platform%2Fcore%2Fdotnet%2Flauncher.git Remove ICULoadDisable support from platform image. (#391) --- diff --git a/NativeLauncher/launcher/exec/launcher.cc b/NativeLauncher/launcher/exec/launcher.cc index c2fa7a9..7f8b8d4 100644 --- a/NativeLauncher/launcher/exec/launcher.cc +++ b/NativeLauncher/launcher/exec/launcher.cc @@ -41,7 +41,6 @@ static std::string PaddingOption("--PADDING_TO_CHANGE_CMDLINE_PADDING_TO_CHANGE_ static std::string AppTypeOption("--appType"); static std::string ProfileOption("--profile"); static std::string GlobalizationInvariantOption("--invariant"); -static std::string GlobalizationInvariantOption2("ICULoadDisable"); int main(int argc, char *argv[]) { @@ -60,9 +59,8 @@ int main(int argc, char *argv[]) // start index 1 to avoid passing executable name "dotnet-launcher" as a parameter for (int i = 1; i < argc; i++) { - if (GlobalizationInvariantOption.compare(argv[i]) == 0 || GlobalizationInvariantOption2.compare(argv[i]) == 0) { + if (GlobalizationInvariantOption.compare(argv[i]) == 0) { setenv("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT", "1", 1); - i++; } else if (StandaloneOption.compare(argv[i]) == 0) { if (i > argc - 1) { _ERR("Assembly path must be after \"--standalone\" option");