Enable default incremental compilation by default in IDEA

#KT-11360 fixed
This commit is contained in:
Alexey Tsvetkov
2016-03-16 16:40:07 +03:00
parent fecb64560b
commit d1a8c0d09b
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -5,6 +5,7 @@
## 1.0.2
- Show only changed files in notification "Kotlin not configured"
- Configure Kotlin: restore all changed files in undo action
- Enable precise incremental compilation by default
### JVM
- Remove the compiler option "Xmultifile-facades-open"
@@ -28,7 +28,7 @@ import com.intellij.util.xmlb.XmlSerializerUtil
Storage(file = StoragePathMacros.WORKSPACE_FILE)
)
) class KotlinCompilerWorkspaceSettings() : PersistentStateComponent<KotlinCompilerWorkspaceSettings> {
var preciseIncrementalEnabled: Boolean = false
var preciseIncrementalEnabled: Boolean = true
var enableDaemon: Boolean = true
override fun getState(): KotlinCompilerWorkspaceSettings {