diff --git a/idea/idea-analysis/src/org/jetbrains/kotlin/idea/caches/resolve/KotlinLightClassForDecompiledDeclaration.kt b/idea/idea-analysis/src/org/jetbrains/kotlin/idea/caches/resolve/KotlinLightClassForDecompiledDeclaration.kt index 89c58dbc90d..f25f713d126 100644 --- a/idea/idea-analysis/src/org/jetbrains/kotlin/idea/caches/resolve/KotlinLightClassForDecompiledDeclaration.kt +++ b/idea/idea-analysis/src/org/jetbrains/kotlin/idea/caches/resolve/KotlinLightClassForDecompiledDeclaration.kt @@ -46,6 +46,8 @@ class KotlinLightClassForDecompiledDeclaration( override fun getFqName() = fqName + override fun getParent() = clsClass.parent + override fun equals(other: Any?): Boolean = other is KotlinLightClassForDecompiledDeclaration && getFqName() == other.getFqName()