Remove unused imports

This commit is contained in:
Matthias Beyer 2016-04-16 22:50:36 +02:00
parent 179ae2b22c
commit 5a62d1f999
2 changed files with 1 additions and 4 deletions

View file

@ -1,9 +1,7 @@
use std::error::Error;
use std::fmt::Error as FmtError;
use std::clone::Clone;
use std::fmt::{Debug, Display, Formatter};
use std::fmt;
use std::convert::From;
use std::fmt::{Display, Formatter};
/**
* Kind of store error

View file

@ -14,7 +14,6 @@ use std::process::exit;
use libimagrt::runtime::Runtime;
use libimagstore::store::FileLockEntry;
use libimagstore::store::Result as StoreResult;
use libimagutil::trace::trace_error;
mod error;