diff --git a/compiler/fir/tree/src/org/jetbrains/kotlin/fir/Utils.kt b/compiler/fir/tree/src/org/jetbrains/kotlin/fir/Utils.kt index 1d15a39caf9..a4d0c0fb8d3 100644 --- a/compiler/fir/tree/src/org/jetbrains/kotlin/fir/Utils.kt +++ b/compiler/fir/tree/src/org/jetbrains/kotlin/fir/Utils.kt @@ -17,8 +17,6 @@ fun ModuleInfo.dependenciesWithoutSelf(): Sequence = dependencies(). // TODO: rewrite fun FirBlock.returnExpressions(): List = listOfNotNull(statements.lastOrNull() as? FirExpression) -private val PUBLIC_METHOD_NAMES_IN_OBJECT = setOf("equals", "hashCode", "getClass", "wait", "notify", "notifyAll", "toString") - // do we need a deep copy here ? fun R.copyWithNewSourceKind(newKind: FirFakeSourceElementKind): R { if (source == null) return this