Remove 'noReflect' from Gradle options

^KT-49011 In Progress
This commit is contained in:
Yahor Berdnikau
2022-01-28 15:31:42 +01:00
parent 27e449cd56
commit 57c342fec8
2 changed files with 1 additions and 2 deletions
@@ -55,8 +55,6 @@ class K2JVMCompilerArguments : CommonCompilerArguments() {
)
var noStdlib: Boolean by FreezableVar(false)
@GradleDeprecatedOption(removeAfter = "1.5", level = DeprecationLevel.ERROR)
@GradleOption(DefaultValues.BooleanTrueDefault::class)
@Argument(value = "-no-reflect", description = "Don't automatically include Kotlin reflection into the classpath")
var noReflect: Boolean by FreezableVar(false)
@@ -103,5 +103,6 @@ internal fun org.jetbrains.kotlin.cli.common.arguments.K2JVMCompilerArguments.fi
moduleName = null
noJdk = false
noStdlib = true
noReflect = true
useOldBackend = false
}