Skip to content

Commit c18ebbe

Browse files
committedOct 11, 2024··
silently re-add diff::tree::ChangeDetached
It's nice to have a symmetric API and it fits into `gix`.
1 parent f8952e4 commit c18ebbe

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎gix/src/object/tree/diff/change.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
use super::ChangeDetached;
12
use crate::bstr::{BStr, ByteSlice};
23
use crate::ext::ObjectIdExt;
34
use crate::object::tree::diff::Change;
45
use crate::Repository;
5-
use gix_diff::tree_with_rewrites::Change as ChangeDetached;
66

77
impl Change<'_, '_, '_> {
88
/// Produce a platform for performing a line-diff no matter whether the underlying [Change] is an addition, modification,

‎gix/src/object/tree/diff/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ pub enum Action {
1212
Cancel,
1313
}
1414

15+
pub use gix_diff::tree_with_rewrites::Change as ChangeDetached;
16+
1517
/// Represents any possible change in order to turn one tree into another.
1618
#[derive(Debug, Clone, Copy)]
1719
pub enum Change<'a, 'old, 'new> {

0 commit comments

Comments
 (0)
Please sign in to comment.