From 8ffe78dba4744514aab15a233365286bf7fef0ac Mon Sep 17 00:00:00 2001 From: Yahor Berdnikau Date: Fri, 28 Jan 2022 14:59:47 +0100 Subject: [PATCH] Remove GradleOption from 'includeRuntime' argument ^KT-49011 In Progress --- .../kotlin/cli/common/arguments/K2JVMCompilerArguments.kt | 2 -- 1 file changed, 2 deletions(-) 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 7cef376620e..f8c5d087f20 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 @@ -27,8 +27,6 @@ class K2JVMCompilerArguments : CommonCompilerArguments() { ) var classpath: String? by NullableStringFreezableVar(null) - @GradleDeprecatedOption(removeAfter = "1.5", level = DeprecationLevel.ERROR) - @GradleOption(DefaultValues.BooleanFalseDefault::class) @Argument(value = "-include-runtime", description = "Include Kotlin runtime into the resulting JAR") var includeRuntime: Boolean by FreezableVar(false)