Auto merge of #110 - neithernut:remove-residual-storeentry-methods, r=matthiasbeyer

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.
This commit is contained in:
Homu 2016-01-23 03:06:09 +09:00
commit 7511e220c8

View file

@ -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<Entry> {
unimplemented!()
}
/// We copy the entry
fn copy_entry(&mut self) -> Result<Entry> {
unimplemented!()
}
}
/// The Store itself, through this object one can interact with IMAG's entries