Revert "kotlin runtime must be added to classpath" temporarily

This reverts commit 90910cae34.
This commit is contained in:
Stepan Koltsov
2012-05-01 21:22:06 +04:00
parent d71723131d
commit 58b706c12e
@@ -72,7 +72,9 @@ public class JetCoreEnvironment extends JavaCoreEnvironment {
} }
} }
if (compilerSpecialMode.includeKotlinRuntime()) { if (compilerSpecialMode.includeKotlinRuntime()) {
addToClasspath(compilerDependencies.getRuntimeJar()); for (VirtualFile root : compilerDependencies.getRuntimeRoots()) {
addLibraryRoot(root);
}
} }
JetStandardLibrary.initialize(getProject()); JetStandardLibrary.initialize(getProject());