Drop deprecated KotlinPaths.getRuntimePath, use getStdlibPath instead
This commit is contained in:
@@ -27,12 +27,6 @@ public interface KotlinPaths {
|
||||
@NotNull
|
||||
File getLibPath();
|
||||
|
||||
/**
|
||||
* @deprecated Use getStdlibPath() instead
|
||||
*/
|
||||
@NotNull
|
||||
File getRuntimePath();
|
||||
|
||||
@NotNull
|
||||
File getStdlibPath();
|
||||
|
||||
|
||||
@@ -40,12 +40,6 @@ public class KotlinPathsFromHomeDir implements KotlinPaths {
|
||||
return new File(homePath, "lib");
|
||||
}
|
||||
|
||||
@Override
|
||||
@NotNull
|
||||
public File getRuntimePath() {
|
||||
return getLibraryFile(PathUtil.KOTLIN_JAVA_RUNTIME_JAR);
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public File getStdlibPath() {
|
||||
|
||||
@@ -30,7 +30,6 @@ object PathUtil {
|
||||
const val NOARG_PLUGIN_JAR_NAME = "noarg-compiler-plugin.jar"
|
||||
const val SAM_WITH_RECEIVER_PLUGIN_JAR_NAME = "sam-with-receiver-compiler-plugin.jar"
|
||||
const val JS_LIB_SRC_JAR_NAME = "kotlin-stdlib-js-sources.jar"
|
||||
const val KOTLIN_JAVA_RUNTIME_JAR = "kotlin-runtime.jar"
|
||||
const val KOTLIN_JAVA_RUNTIME_JRE7_JAR = "kotlin-stdlib-jre7.jar"
|
||||
const val KOTLIN_JAVA_RUNTIME_JRE8_JAR = "kotlin-stdlib-jre8.jar"
|
||||
const val KOTLIN_JAVA_RUNTIME_JRE7_SRC_JAR = "kotlin-stdlib-jre7-sources.jar"
|
||||
|
||||
Reference in New Issue
Block a user