Compilation fix

This commit is contained in:
Mikhail Glukhikh
2018-03-07 19:15:17 +03:00
parent 71a6827b1c
commit cc5821382c
@@ -115,7 +115,7 @@ class ModuleDescriptorImpl @JvmOverloads constructor(
}
override fun shouldSeeInternalsOf(targetModule: ModuleDescriptor): Boolean {
return this == targetModule || targetModule in dependencies!!.modulesWhoseInternalsAreVisible || expectedByModule == targetModule
return this == targetModule || targetModule in dependencies!!.modulesWhoseInternalsAreVisible || targetModule in expectedByModules
}
private val id: String