Skip to content

Commit

Permalink
fix import/prevent warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Dec 7, 2023
1 parent 082e6ed commit ec0211a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gix/src/revision/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ pub use gix_revision as plumbing;

///
pub mod walk;
use crate::bstr::BString;
pub use walk::iter::Walk;

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

0 comments on commit ec0211a

Please sign in to comment.