Auto merge of #109 - matthiasbeyer:libimagstore/remove-unused-imports, r=matthiasbeyer

Remove unused imports

@TheNeikos
This commit is contained in:
Homu 2016-01-18 00:29:49 +09:00
commit c4711d2508
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;