Skip to content

Commit 3322191

Browse files
bnoordhuisaddaleax
authored andcommitted
src: don't set --icu_case_mapping flag on startup
It's on by default now and the flag will be removed in the near future. Fixes: #13688 PR-URL: #13698 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Daijiro Wachi <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
1 parent 1f32d9e commit 3322191

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/node.cc

-8
Original file line numberDiff line numberDiff line change
@@ -4305,14 +4305,6 @@ void Init(int* argc,
43054305
// Make inherited handles noninheritable.
43064306
uv_disable_stdio_inheritance();
43074307

4308-
#if defined(NODE_HAVE_I18N_SUPPORT)
4309-
// Set the ICU casing flag early
4310-
// so the user can disable a flag --foo at run-time by passing
4311-
// --no_foo from the command line.
4312-
const char icu_case_mapping[] = "--icu_case_mapping";
4313-
V8::SetFlagsFromString(icu_case_mapping, sizeof(icu_case_mapping) - 1);
4314-
#endif
4315-
43164308
#if defined(NODE_V8_OPTIONS)
43174309
// Should come before the call to V8::SetFlagsFromCommandLine()
43184310
// so the user can disable a flag --foo at run-time by passing

0 commit comments

Comments
 (0)