Removed factory methods from JetCoreEnvironment since they only invoke constuctor.

This commit is contained in:
Evgeny Gerashchenko
2012-07-24 17:16:45 +04:00
parent 17e3738084
commit 9a5fc78b85
7 changed files with 8 additions and 18 deletions
@@ -61,7 +61,7 @@ public abstract class BasicTest extends KotlinTestWithEnvironment {
@Override
protected JetCoreEnvironment createEnvironment() {
return JetCoreEnvironment.createCoreEnvironmentForJVM(getTestRootDisposable(), new CompilerConfiguration());
return new JetCoreEnvironment(getTestRootDisposable(), new CompilerConfiguration());
}
@NotNull