Unnamed repository; edit this file 'description' to name the repository.
Fix breaking change in gix Tree::loop_entry_by_path
Michael Davis 2024-11-13
parent b5d56e5 · commit 9806ca0
-rw-r--r--helix-vcs/src/git.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-vcs/src/git.rs b/helix-vcs/src/git.rs
index 48220f4d..189f6e22 100644
--- a/helix-vcs/src/git.rs
+++ b/helix-vcs/src/git.rs
@@ -198,7 +198,7 @@ fn find_file_in_commit(repo: &Repository, commit: &Commit, file: &Path) -> Resul
let rel_path = file.strip_prefix(repo_dir)?;
let tree = commit.tree()?;
let tree_entry = tree
- .lookup_entry_by_path(rel_path, &mut Vec::new())?
+ .lookup_entry_by_path(rel_path)?
.context("file is untracked")?;
match tree_entry.mode().kind() {
// not a file, everything is new, do not show diff