Stop building separate jar with unsigned types

Now this is not needed as unsigned types were merged into stdlib
This commit is contained in:
Mikhail Zarechenskiy
2018-11-13 02:16:20 +03:00
parent 797784ff34
commit 45541296ad
2 changed files with 0 additions and 32 deletions
@@ -20,8 +20,6 @@ public class ForTestCompileRuntime {
private static volatile SoftReference<ClassLoader> reflectJarClassLoader = new SoftReference<>(null);
private static volatile SoftReference<ClassLoader> runtimeJarClassLoader = new SoftReference<>(null);
private static volatile SoftReference<ClassLoader> coroutinesJarClassLoader = new SoftReference<>(null);
private static volatile SoftReference<ClassLoader> unsignedTypesJarClassLoader = new SoftReference<>(null);
private static volatile SoftReference<ClassLoader> unsignedTypesAndReflectJarClassLoader = new SoftReference<>(null);
private static volatile SoftReference<ClassLoader> coroutinesAndReflectJarClassLoader = new SoftReference<>(null);
@NotNull
@@ -34,11 +32,6 @@ public class ForTestCompileRuntime {
return assertExists(new File("dist/kotlin-stdlib-coroutines.jar"));
}
@NotNull
public static File unsignedTypesJarForTests() {
return assertExists(new File("dist/kotlin-stdlib-unsigned.jar"));
}
@NotNull
public static File minimalRuntimeJarForTests() {
return assertExists(new File("dist/kotlin-stdlib-minimal-for-test.jar"));