Remove unused imports

This commit is contained in:
Matthias Beyer 2016-01-17 16:23:35 +01:00
parent 469bdd1d94
commit 48071fbc7b
2 changed files with 1 additions and 5 deletions

View File

@ -1,12 +1,8 @@
use std::error::Error;
use std::fmt::Debug;
use std::fmt::Display;
use std::fmt::Formatter;
use std::fmt::Error as FmtError;
use std::clone::Clone;
use std::convert::From;
use std::io::Error as IOError;
#[derive(Clone, Copy, Debug)]
pub enum StoreErrorKind {

View File

@ -4,7 +4,7 @@ use std::ops::Drop;
use std::path::PathBuf;
use std::result::Result as RResult;
use std::sync::Arc;
use std::sync::{RwLock, Mutex};
use std::sync::RwLock;
use fs2::FileExt;