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.
use rustc_hash::FxHasher;
use std::{
cmp::min,
hash::{Hash, Hasher},
};
use std::hash::{Hash, Hasher};
use strsim::normalized_levenshtein;
use crate::syntax::{AtomKind, ChangeKind, Syntax};