Minor klib cleanups
Review: https://jetbrains.team/p/kt/reviews/8401 - Code style - Drop unused properties in kotlin-native/build.gradle - kotlin-native/build.gradle: drop unused import - use final instead of open when possible This is just a cleanup commit. It neither fixes any issue/bug, nor introduces new behaviour. Feel free to revert this commit if you find out that it breaks something
This commit is contained in:
@@ -80,8 +80,6 @@ ext {
|
||||
|
||||
kotlinCompilerModule = project(":kotlin-compiler")
|
||||
kotlinStdLibModule= project(":kotlin-stdlib")
|
||||
kotlinScriptRuntimeModule= project(":kotlin-script-runtime")
|
||||
kotlinUtilKliMetadatabModule= project(":kotlin-util-klib-metadata")
|
||||
|
||||
// A separate map for each build for automatic cleaning the daemon after the build have finished.
|
||||
toolClassLoadersMap = new ConcurrentHashMap<Object, URLClassLoader>()
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
import org.jetbrains.kotlin.UtilsKt
|
||||
|
||||
def kotlinRoot = ext.properties.containsKey("rootBuildDirectory") ? file("${ext.rootBuildDirectory}/..") : rootProject.projectDir
|
||||
File versionPropertiesFile = new File(kotlinRoot, "gradle/versions.properties")
|
||||
def versionProperties = new Properties()
|
||||
|
||||
Reference in New Issue
Block a user