Remove unused import

html_output
Wilfred Hughes 2022-02-20 12:54:25 +07:00
parent 7544874a55
commit eea5bb7273
1 changed files with 1 additions and 4 deletions

@ -1,10 +1,7 @@
//! A graph representation for computing tree diffs. //! A graph representation for computing tree diffs.
use rustc_hash::FxHasher; use rustc_hash::FxHasher;
use std::{ use std::hash::{Hash, Hasher};
cmp::min,
hash::{Hash, Hasher},
};
use strsim::normalized_levenshtein; use strsim::normalized_levenshtein;
use crate::syntax::{AtomKind, ChangeKind, Syntax}; use crate::syntax::{AtomKind, ChangeKind, Syntax};