Skip to content

Commit

Permalink
debug.rs: make one of the imports optional
Browse files Browse the repository at this point in the history
This removes a warning rust-analyzer otherwise shows me.
  • Loading branch information
ilyagr committed Oct 28, 2023
1 parent 438c2c5 commit 74f5fa7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cli/src/commands/debug.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ use std::io::Write as _;
use clap::Subcommand;
use jj_lib::backend::ObjectId;
use jj_lib::default_index_store::{DefaultIndexStore, ReadonlyIndexWrapper};
use jj_lib::local_working_copy::{LocalWorkingCopy, LockedLocalWorkingCopy};
use jj_lib::local_working_copy::LocalWorkingCopy;
#[cfg(feature = "watchman")]
use jj_lib::local_working_copy::LockedLocalWorkingCopy;
use jj_lib::revset;
use jj_lib::working_copy::WorkingCopy;

Expand Down

0 comments on commit 74f5fa7

Please sign in to comment.