Farewell, excluded imports from the platform. If anyone ever needs them again, they are buried in this commit.

This commit is contained in:
Ilya Gorbunov
2016-10-07 20:48:32 +03:00
parent f2c5fee1cf
commit 4236a4dd07
4 changed files with 1 additions and 12 deletions
@@ -31,8 +31,6 @@ object JvmPlatform : TargetPlatform("JVM") {
override val defaultModuleParameters = object : ModuleParameters {
override val defaultImports: List<ImportPath>
get() = DEFAULT_IMPORTS_FOR_JVM
override val excludedImports: List<FqName>
get() = EXCLUDED_IMPORTS_FOR_JVM
}
override val platformConfigurator: PlatformConfigurator = JvmPlatformConfigurator
@@ -61,5 +59,3 @@ private val DEFAULT_IMPORTS_FOR_JVM: List<ImportPath> = ArrayList<ImportPath>().
addAllClassifiersFromScope(builtinPackageFragment.getMemberScope())
}
}
private val EXCLUDED_IMPORTS_FOR_JVM: List<FqName> = emptyList()