Remove CLI help on 'preserve-class-initialization' mode

See https://youtrack.jetbrains.com/issue/KT-19532#comment=27-2492178
This commit is contained in:
Dmitry Petrov
2017-10-23 16:11:07 +03:00
parent 75c8b787c2
commit 68870a16bb
2 changed files with 4 additions and 7 deletions
@@ -111,11 +111,8 @@ class K2JVMCompilerArguments : CommonCompilerArguments() {
@Argument(
value = "-Xnormalize-constructor-calls",
valueDescription = "{disable|enable|preserve-class-initialization}",
description = "Normalize constructor calls " +
"(disable: don't normalize; enable: normalize; " +
"preserve-class-initialization: normalize preserving class initialization order), " +
"default is disable"
valueDescription = "{disable|enable}",
description = "Normalize constructor calls (disable: don't normalize; enable: normalize), default is disable"
)
var constructorCallNormalizationMode: String? by FreezableVar(JVMConstructorCallNormalizationMode.DEFAULT.description)