mirror of
https://github.com/martinvonz/jj.git
synced 2024-12-27 23:06:45 +00:00
commit_templater: avoid looking up tree only to get its id
This commit is contained in:
parent
7bcb01ae5e
commit
eebc2ef5a1
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ fn build_commit_keyword_opt<'repo>(
|
|||
}
|
||||
"empty" => language.wrap_boolean(wrap_fn(property, |commit| {
|
||||
let parent_tree = rewrite::merge_commit_trees(repo, &commit.parents()).unwrap();
|
||||
commit.tree().id() == parent_tree.id()
|
||||
commit.tree_id() == parent_tree.id()
|
||||
})),
|
||||
_ => return None,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue