We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22aca8f commit 6b02ffeCopy full SHA for 6b02ffe
src/housekeeping.rs
@@ -145,8 +145,8 @@ pub fn discover_filter_candidates(
145
pub fn find_all_workspaces_and_subdirectories(
146
tree: &git2::Tree,
147
) -> JoshResult<std::collections::HashSet<String>> {
148
-
149
- let _trace_s = span!(Level::TRACE, "find_all_workspaces_and_subdirectories");
+ let _trace_s =
+ span!(Level::TRACE, "find_all_workspaces_and_subdirectories");
150
let mut hs = std::collections::HashSet::new();
151
tree.walk(git2::TreeWalkMode::PreOrder, |root, entry| {
152
if entry.name() == Some(&"workspace.josh") {
0 commit comments