[FIR] Remove print in UnusedChecker

This commit is contained in:
vldf
2020-08-30 14:14:18 +03:00
parent 9c3ff6828a
commit b050ef9970
@@ -123,7 +123,6 @@ object UnusedChecker : FirControlFlowChecker() {
private val localProperties: Set<FirPropertySymbol>
) : ControlFlowGraphVisitor<VariableStatusInfo, Collection<VariableStatusInfo>>() {
fun getData(graph: ControlFlowGraph): Map<CFGNode<*>, VariableStatusInfo> {
println("getting data for local properties set ${localProperties.joinToString()}")
return graph.collectDataForNode(TraverseDirection.Backward, VariableStatusInfo.EMPTY, this)
}