diff --git a/compiler/fir/checkers/src/org/jetbrains/kotlin/fir/analysis/checkers/extended/UnusedChecker.kt b/compiler/fir/checkers/src/org/jetbrains/kotlin/fir/analysis/checkers/extended/UnusedChecker.kt index 91b62241091..7e05e497d88 100644 --- a/compiler/fir/checkers/src/org/jetbrains/kotlin/fir/analysis/checkers/extended/UnusedChecker.kt +++ b/compiler/fir/checkers/src/org/jetbrains/kotlin/fir/analysis/checkers/extended/UnusedChecker.kt @@ -123,7 +123,6 @@ object UnusedChecker : FirControlFlowChecker() { private val localProperties: Set ) : ControlFlowGraphVisitor>() { fun getData(graph: ControlFlowGraph): Map, VariableStatusInfo> { - println("getting data for local properties set ${localProperties.joinToString()}") return graph.collectDataForNode(TraverseDirection.Backward, VariableStatusInfo.EMPTY, this) }