From 97ac047df54b7235d3356336dea68442e0215f9a Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 21 Mar 2016 18:50:23 +0100 Subject: [PATCH] lib: Remove unused imports --- libimagnotes/src/error.rs | 4 +--- libimagnotes/src/note.rs | 2 -- 2 files changed, 1 insertion(+), 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;