diff options
| author | KaDiWa <kalle.wachsmuth@gmail.com> | 2022-08-09 02:14:43 +0200 |
|---|---|---|
| committer | kadiwa <kalle.wachsmuth@gmail.com> | 2023-04-12 19:27:18 +0200 |
| commit | ad2b34d0e37e2f968f226e2401bcb894207ca1c5 (patch) | |
| tree | 66be076f5111ae974971f1836d7da023cf60230d /src/bootstrap | |
| parent | 661b33f5247debc4e0cd948caa388997e18e9cb8 (diff) | |
| download | rust-ad2b34d0e37e2f968f226e2401bcb894207ca1c5.tar.gz rust-ad2b34d0e37e2f968f226e2401bcb894207ca1c5.zip | |
remove some unneeded imports
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/cache.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bootstrap/cache.rs b/src/bootstrap/cache.rs index 05f25af68ea..5376c4ec9c3 100644 --- a/src/bootstrap/cache.rs +++ b/src/bootstrap/cache.rs @@ -1,9 +1,8 @@ use std::any::{Any, TypeId}; use std::borrow::Borrow; use std::cell::RefCell; -use std::cmp::{Ord, Ordering, PartialOrd}; +use std::cmp::Ordering; use std::collections::HashMap; -use std::convert::AsRef; use std::fmt; use std::hash::{Hash, Hasher}; use std::marker::PhantomData; |
