Always provide not null project in scope for JavaClassFinderImpl

This commit is contained in:
Pavel V. Talanov
2014-06-10 16:50:35 +04:00
parent cb02f6223b
commit 15028b76ef
@@ -71,6 +71,13 @@ public class JavaClassFinderImpl implements JavaClassFinder {
}
return compare;
}
//NOTE: expected by class finder to be not null
@NotNull
@Override
public Project getProject() {
return project;
}
};
javaFacade = new JavaPsiFacadeKotlinHacks(project);
}