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;