You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
handle {self} when recursively removing node from UseTree
This commits adds logic to `UseTree::remove_recursive` to handle converting
`use x::y::{self};` to `use x::y;` when recurisevly removing nodes. For example
`use x::y::{self, Z};` can become `use x::y` if `Z` is unused.
0 commit comments