refactor: remove redundant qualification of symbols in Rust (#15201)

This commit is contained in:
orvit 2022-07-14 16:52:44 -05:00 committed by GitHub
parent 1a7259b04b
commit dbf5e95b59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 28 additions and 33 deletions

View file

@ -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>,
{