summaryrefslogtreecommitdiffstats
path: root/lib/entry/libimagentryannotation/src/annotation_fetcher.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-09-03 21:39:32 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-09-04 09:19:29 +0200
commit18e806f588a2917ba21d289e93216edd3d6c801e (patch)
treefd7f5082b90d74693c470131c09ab192a07149d8 /lib/entry/libimagentryannotation/src/annotation_fetcher.rs
parente9ed4dfcab399b9af5b53b85f41476fb9cc21df5 (diff)
Remove dedicated result modules, use error chain generated Result types
Diffstat (limited to 'lib/entry/libimagentryannotation/src/annotation_fetcher.rs')
-rw-r--r--lib/entry/libimagentryannotation/src/annotation_fetcher.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/entry/libimagentryannotation/src/annotation_fetcher.rs b/lib/entry/libimagentryannotation/src/annotation_fetcher.rs
index 27f2f4b8..49890550 100644
--- a/lib/entry/libimagentryannotation/src/annotation_fetcher.rs
+++ b/lib/entry/libimagentryannotation/src/annotation_fetcher.rs
@@ -24,7 +24,7 @@ use libimagnotes::note::Note;
use libimagnotes::note::NoteIterator;
use libimagstore::storeid::StoreIdIterator;
-use result::Result;
+use error::Result;
use error::AnnotationErrorKind as AEK;
use error::ResultExt;
@@ -73,7 +73,7 @@ pub mod iter {
use libimagnotes::note::Note;
use libimagnotes::note::NoteIterator;
- use result::Result;
+ use error::Result;
use error::AnnotationErrorKind as AEK;
use error::AnnotationError as AE;
use error::ResultExt;