Use JvmTarget.DEFAULT instead of JVM_1_6 where applicable

Original commit: c7c377e1b1
This commit is contained in:
Alexander Udalov
2019-03-04 19:28:00 +01:00
parent 7d8324063f
commit 1e3c40cf9c
@@ -25,7 +25,7 @@ object JvmIdePlatformKind : IdePlatformKind<JvmIdePlatformKind>() {
override val compilerPlatform get() = JvmPlatform
override val platforms = JvmTarget.values().map { ver -> Platform(ver) }
override val defaultPlatform get() = Platform(JvmTarget.JVM_1_6)
override val defaultPlatform get() = Platform(JvmTarget.DEFAULT)
override val argumentsClass get() = K2JVMCompilerArguments::class.java