From 66daa255a9ee8f0635f287fe70e1c26c0dddb3d4 Mon Sep 17 00:00:00 2001 From: Julian Ganz Date: Sun, 17 Jan 2016 16:25:14 +0100 Subject: [PATCH] Remove methods which are not needed anymore These methods were intended for managing cached entries. Sice it was decided not to serve caching in the store, these methods are no longer needed. --- libimagstore/src/store.rs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/libimagstore/src/store.rs b/libimagstore/src/store.rs index 1385584b..59e95466 100644 --- a/libimagstore/src/store.rs +++ b/libimagstore/src/store.rs @@ -82,21 +82,6 @@ impl StoreEntry { fn is_borrowed(&self) -> bool { self.entry == StoreEntryPresence::Borrowed } - - /// Flush the entry to disk - fn set_entry(&mut self, entry: Entry) -> Result<()> { - unimplemented!() - } - - /// We borrow the entry - fn get_entry(&mut self) -> Result { - unimplemented!() - } - - /// We copy the entry - fn copy_entry(&mut self) -> Result { - unimplemented!() - } } /// The Store itself, through this object one can interact with IMAG's entries