From d4c850ef17797f39da36b783eab7a4814bfbf4d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=BCller?= Date: Sat, 16 Jan 2016 20:22:18 +0100 Subject: [PATCH] Remove export of types --- libimagstore/src/store.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libimagstore/src/store.rs b/libimagstore/src/store.rs index cbd89b46..61bb0ff2 100644 --- a/libimagstore/src/store.rs +++ b/libimagstore/src/store.rs @@ -8,8 +8,8 @@ use std::sync::{RwLock, Mutex}; use fs2::FileExt; -pub use entry::Entry; -pub use error::StoreError; +use entry::Entry; +use error::StoreError; pub type Result = RResult;