Skip to content

Commit 926827a

Browse files
committed
Remove unnecessary trait bound for home::Env
1 parent e61c237 commit 926827a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/currentprocess.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ use std::{
1515
};
1616

1717
use enum_dispatch::enum_dispatch;
18-
use home::env as home;
1918
#[cfg(feature = "test")]
2019
use rand::{thread_rng, Rng};
2120

@@ -63,7 +62,7 @@ use varsource::*;
6362
/// methods are in performance critical loops (except perhaps progress bars -
6463
/// and even there we should be doing debouncing and managing update rates).
6564
#[enum_dispatch]
66-
pub trait CurrentProcess: home::Env + CurrentDirSource + VarSource + Debug {}
65+
pub trait CurrentProcess: CurrentDirSource + VarSource + Debug {}
6766

6867
/// Allows concrete types for the currentprocess abstraction.
6968
#[derive(Clone, Debug)]

0 commit comments

Comments
 (0)