Skip to content

Commit

Permalink
Fix reporting about filtered modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Mishkun committed Jul 9, 2023
1 parent 9fdcd00 commit f41700f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/xyz/mishkun/lobzik/graph/GraphRoutine.kt
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class GraphRoutine(
hits.execute(graphModel)

graphModel.visibleView = filterController.filter(giantComponentQuery)
println("Filtered module columns:" + graphModel.nodeIndex.values(projectColumn).toSet().joinToString())
println("Filtered module columns: " + graphModel.graphVisible.nodes.mapTo(HashSet()) { it.getAttribute(projectColumn) }.joinToString())

// See visible graph stats

Expand Down

0 comments on commit f41700f

Please sign in to comment.