mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-18 18:27:38 +00:00
cleanup: fix formatting regression
This commit is contained in:
parent
ae3ff4e1be
commit
30845c1f3b
1 changed files with 1 additions and 4 deletions
|
@ -162,10 +162,7 @@ pub fn materialize_conflict(
|
|||
.iter()
|
||||
.map(|part| get_file_contents(store, path, part))
|
||||
.collect_vec();
|
||||
let removed_slices = removed_content
|
||||
.iter()
|
||||
.map(Vec::as_slice)
|
||||
.collect_vec();
|
||||
let removed_slices = removed_content.iter().map(Vec::as_slice).collect_vec();
|
||||
let added_slices = added_content.iter().map(Vec::as_slice).collect_vec();
|
||||
|
||||
let merge_result = files::merge(&removed_slices, &added_slices);
|
||||
|
|
Loading…
Reference in a new issue