diff options
Diffstat (limited to 'cli/emit.rs')
-rw-r--r-- | cli/emit.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/emit.rs b/cli/emit.rs index c7a31fc0f..584593869 100644 --- a/cli/emit.rs +++ b/cli/emit.rs @@ -38,7 +38,6 @@ use deno_graph::ModuleKind; use deno_graph::ResolutionError; use std::collections::HashSet; use std::fmt; -use std::result; use std::sync::Arc; use std::time::Instant; @@ -47,7 +46,7 @@ use std::time::Instant; pub struct Stats(pub Vec<(String, u32)>); impl<'de> Deserialize<'de> for Stats { - fn deserialize<D>(deserializer: D) -> result::Result<Self, D::Error> + fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: Deserializer<'de>, { |