diff --git a/crates/project/src/worktree.rs b/crates/project/src/worktree.rs index 7596b0fcb79794d7971a495513e7c3b3ba69eba3..d86b98e0ecbaee43dcecc14f3c5f188095c8977b 100644 --- a/crates/project/src/worktree.rs +++ b/crates/project/src/worktree.rs @@ -982,7 +982,7 @@ impl LocalWorktree { } /// Find the lowest path in the worktree's datastructures that is an ancestor - pub fn lowest_ancestor(&self, path: &Path) -> PathBuf { + fn lowest_ancestor(&self, path: &Path) -> PathBuf { let mut lowest_ancestor = None; for path in path.ancestors() { if self.entry_for_path(path).is_some() {