disable resident-compiler related code paths when it isn't being used. fixes #486.

The underlying issue with the resident compiler needs fixing, however.
This commit is contained in:
Mark Harrah 2012-06-16 23:40:52 -04:00
parent 935eed087f
commit 4c1a979d8a
1 changed files with 1 additions and 1 deletions

View File

@ -6,5 +6,5 @@ import xsbti.Reporter;
public interface CachedCompilerProvider
{
ScalaInstance scalaInstance();
CachedCompiler newCachedCompiler(String[] arguments, Logger log, Reporter reporter);
CachedCompiler newCachedCompiler(String[] arguments, Logger log, Reporter reporter, boolean resident);
}