summaryrefslogtreecommitdiffstats
path: root/libimagnotes
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-03-21 18:50:23 +0100
committerMatthias Beyer <mail@beyermatthias.de>2016-03-26 16:43:33 +0100
commit97ac047df54b7235d3356336dea68442e0215f9a (patch)
tree873d5c5b0a2a67b4889073e64a8598236d2c1715 /libimagnotes
parent506cebf59476a62aa6a84dd4f990539b7ebe7df0 (diff)
lib: Remove unused imports
Diffstat (limited to 'libimagnotes')
-rw-r--r--libimagnotes/src/error.rs4
-rw-r--r--libimagnotes/src/note.rs2
2 files changed, 1 insertions, 5 deletions
diff --git a/libimagnotes/src/error.rs b/libimagnotes/src/error.rs
index e6b0617f..b55659f6 100644
--- a/libimagnotes/src/error.rs
+++ b/libimagnotes/src/error.rs
@@ -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
diff --git a/libimagnotes/src/note.rs b/libimagnotes/src/note.rs
index 2696fe15..bef74ed9 100644
--- a/libimagnotes/src/note.rs
+++ b/libimagnotes/src/note.rs
@@ -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;