lib: Remove unused imports

This commit is contained in:
Matthias Beyer 2016-03-21 18:50:23 +01:00
parent 506cebf594
commit 97ac047df5
2 changed files with 1 additions and 5 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 error

View file

@ -1,4 +1,3 @@
use std::convert::Into;
use std::collections::BTreeMap;
use std::ops::{DerefMut, Deref};
@ -12,7 +11,6 @@ use libimagstore::store::Store;
use libimagtag::tag::Tag;
use libimagtag::tagable::Tagable;
use libimagtag::result::Result as TagResult;
use libimagtag::error::{TagError, TagErrorKind};
use module_path::ModuleEntryPath;
use result::Result;