Skip to content

Commit 70420fa

Browse files
committed
Remove unnecessary trait bound for home::Env
1 parent 5ced6f2 commit 70420fa

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
@@ -16,7 +16,6 @@ use std::{
1616
};
1717

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

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

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

0 commit comments

Comments
 (0)