From dbf5e95b59656b05f28218a27d128cae9fd68342 Mon Sep 17 00:00:00 2001 From: orvit Date: Thu, 14 Jul 2022 16:52:44 -0500 Subject: refactor: remove redundant qualification of symbols in Rust (#15201) --- cli/emit.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cli/emit.rs') 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(deserializer: D) -> result::Result + fn deserialize(deserializer: D) -> Result where D: Deserializer<'de>, { -- cgit v1.2.3