Remove 'noReflect' from Gradle options
^KT-49011 In Progress
This commit is contained in:
-2
@@ -55,8 +55,6 @@ class K2JVMCompilerArguments : CommonCompilerArguments() {
|
|||||||
)
|
)
|
||||||
var noStdlib: Boolean by FreezableVar(false)
|
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")
|
@Argument(value = "-no-reflect", description = "Don't automatically include Kotlin reflection into the classpath")
|
||||||
var noReflect: Boolean by FreezableVar(false)
|
var noReflect: Boolean by FreezableVar(false)
|
||||||
|
|
||||||
|
|||||||
+1
@@ -103,5 +103,6 @@ internal fun org.jetbrains.kotlin.cli.common.arguments.K2JVMCompilerArguments.fi
|
|||||||
moduleName = null
|
moduleName = null
|
||||||
noJdk = false
|
noJdk = false
|
||||||
noStdlib = true
|
noStdlib = true
|
||||||
|
noReflect = true
|
||||||
useOldBackend = false
|
useOldBackend = false
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user