Adjust project code to changes in properties loading

This commit is contained in:
Denis Zharkov
2015-10-10 12:29:09 +03:00
parent 97ed8c83a0
commit f9c7e7add4
8 changed files with 16 additions and 16 deletions
@@ -30,7 +30,7 @@ import org.jetbrains.kotlin.resolve.BindingContextUtils
public class LazyResolveBasedCache(private val resolveSession: ResolveSession) : JavaResolverCache {
private val trace: BindingTrace get() = resolveSession.getTrace()
private val trace: BindingTrace get() = resolveSession.trace
override fun getClassResolvedFromSource(fqName: FqName): ClassDescriptor? {
return trace.get(FQNAME_TO_CLASS_DESCRIPTOR, fqName.toUnsafe()) ?: findInPackageFragments(fqName)