[SLC] SymbolLightMemberBase: cleanup code
^KT-54051
This commit is contained in:
committed by
Space Team
parent
a25922f054
commit
3764fa5454
+2
-4
@@ -37,11 +37,9 @@ internal abstract class SymbolLightMemberBase<T : PsiMember>(
|
|||||||
|
|
||||||
abstract override fun getName(): String
|
abstract override fun getName(): String
|
||||||
|
|
||||||
override fun isValid(): Boolean =
|
override fun isValid(): Boolean = parent.isValid && lightMemberOrigin?.isValid() != false
|
||||||
parent.isValid && lightMemberOrigin?.isValid() != false
|
|
||||||
|
|
||||||
override fun isEquivalentTo(another: PsiElement?): Boolean =
|
override fun isEquivalentTo(another: PsiElement?): Boolean = basicIsEquivalentTo(this, another as? PsiMethod)
|
||||||
basicIsEquivalentTo(this, another as? PsiMethod)
|
|
||||||
|
|
||||||
abstract override fun hashCode(): Int
|
abstract override fun hashCode(): Int
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user