Moved incremental cache API to separate package.

This commit is contained in:
Evgeny Gerashchenko
2014-08-12 21:16:08 +04:00
parent 5fade9a5a6
commit e419c1a604
9 changed files with 43 additions and 18 deletions
@@ -79,7 +79,7 @@ public class ClassPreloadingUtils {
public Class<?> loadClass(String name) throws ClassNotFoundException {
// When compiler is invoked from JPS, we should use loaded incremental cache interface from its class loader,
// because implementation is loaded from it, as well
if (name.startsWith("org.jetbrains.jet.lang.resolve.kotlin.incremental.cache.IncrementalCache")) {
if (name.startsWith("org.jetbrains.jet.lang.resolve.kotlin.incremental.cache.")) {
if (parent == null) {
return super.loadClass(name);
}