Minor: remove the word 'experimental' from Gradle IC description
This commit is contained in:
+2
-2
@@ -48,7 +48,7 @@ import kotlin.properties.Delegates
|
||||
|
||||
const val ANNOTATIONS_PLUGIN_NAME = "org.jetbrains.kotlin.kapt"
|
||||
const val KOTLIN_BUILD_DIR_NAME = "kotlin"
|
||||
const val USING_EXPERIMENTAL_INCREMENTAL_MESSAGE = "Using experimental kotlin incremental compilation"
|
||||
const val USING_INCREMENTAL_COMPILATION_MESSAGE = "Using kotlin incremental compilation"
|
||||
|
||||
abstract class AbstractKotlinCompile<T : CommonCompilerArguments>() : AbstractCompile(), CompilerArgumentAware {
|
||||
abstract protected fun createCompilerArgs(): T
|
||||
@@ -235,7 +235,7 @@ open class KotlinCompile : AbstractKotlinCompile<K2JVMCompilerArguments>(), Kotl
|
||||
val environment = when {
|
||||
!incremental -> GradleCompilerEnvironment(compilerJar, messageCollector, outputItemCollector, args)
|
||||
else -> {
|
||||
logger.warn(USING_EXPERIMENTAL_INCREMENTAL_MESSAGE)
|
||||
logger.warn(USING_INCREMENTAL_COMPILATION_MESSAGE)
|
||||
GradleIncrementalCompilerEnvironment(compilerJar, changedFiles, reporter, taskBuildDirectory,
|
||||
messageCollector, outputItemCollector, kaptAnnotationsFileUpdater,
|
||||
artifactDifferenceRegistryProvider,
|
||||
|
||||
Reference in New Issue
Block a user