Skip to content

Commit ec0211a

Browse files
committed
fix import/prevent warning
1 parent 082e6ed commit ec0211a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

gix/src/revision/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ pub use gix_revision as plumbing;
77

88
///
99
pub mod walk;
10-
use crate::bstr::BString;
1110
pub use walk::iter::Walk;
1211

1312
///
@@ -24,7 +23,7 @@ pub mod spec;
2423
pub struct Spec<'repo> {
2524
pub(crate) inner: gix_revision::Spec,
2625
/// The path we encountered in the revspec, like `@:<path>` or `@..@~1:<path>`.
27-
pub(crate) path: Option<(BString, gix_object::tree::EntryMode)>,
26+
pub(crate) path: Option<(crate::bstr::BString, gix_object::tree::EntryMode)>,
2827
/// The first name of a reference as seen while parsing a `RevSpec`, for completeness.
2928
pub(crate) first_ref: Option<gix_ref::Reference>,
3029
/// The second name of a reference as seen while parsing a `RevSpec`, for completeness.

0 commit comments

Comments
 (0)