From eb0ff4fbcdb3b3745ad7459381b8336fa020a3d4 Mon Sep 17 00:00:00 2001 From: Sebastian Sellmair Date: Thu, 30 Mar 2023 15:06:36 +0200 Subject: [PATCH] [Gradle] K2JVMCompilerArguments: Remove hardcoded jvmTarget argument default KTIJ-24976 --- .../kotlin/cli/common/arguments/K2JVMCompilerArguments.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/K2JVMCompilerArguments.kt b/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/K2JVMCompilerArguments.kt index 2175f683a97..6eec916e764 100644 --- a/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/K2JVMCompilerArguments.kt +++ b/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/K2JVMCompilerArguments.kt @@ -123,7 +123,7 @@ class K2JVMCompilerArguments : CommonCompilerArguments() { @Argument( value = "-jvm-target", valueDescription = "", - description = "Target version of the generated JVM bytecode (${JvmTarget.SUPPORTED_VERSIONS_DESCRIPTION}), default is 1.8" + description = "Target version of the generated JVM bytecode (${JvmTarget.SUPPORTED_VERSIONS_DESCRIPTION}), default is 1.8", ) var jvmTarget: String? = null set(value) {