diff --git a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/calls/TowerGroup.kt b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/calls/TowerGroup.kt index 3a2c0412062..8c363dd1933 100644 --- a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/calls/TowerGroup.kt +++ b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/calls/TowerGroup.kt @@ -10,8 +10,6 @@ sealed class TowerGroupKind(private val index: Int) : Comparable object Start : TowerGroupKind(Integer.MIN_VALUE) - class Weakened(depth: Int) : WithDepth(-20, depth) - object ClassifierPrioritized : TowerGroupKind(-10) class Qualifier(depth: Int) : WithDepth(0, depth) @@ -74,8 +72,6 @@ class TowerGroup private constructor(private val kinds: Array) : private fun kindOf(kind: TowerGroupKind): TowerGroup = TowerGroup(kinds + kind) - fun Weakened(depth: Int) = kindOf(TowerGroupKind.Weakened(depth)) - val Member get() = kindOf(TowerGroupKind.Member) fun Local(depth: Int) = kindOf(TowerGroupKind.Local(depth))