diff --git a/libimagstore/src/storeid.rs b/libimagstore/src/storeid.rs index 5cf2037a..c9677166 100644 --- a/libimagstore/src/storeid.rs +++ b/libimagstore/src/storeid.rs @@ -12,7 +12,6 @@ use libimagerror::into::IntoError; use error::StoreErrorKind as SEK; use error::MapErrInto; use store::Result; -use store::Store; /// The Index into the Store #[derive(Debug, Clone, PartialEq, Hash, Eq, PartialOrd, Ord)] @@ -63,13 +62,6 @@ impl StoreId { self } - pub fn storified(self, store: &Store) -> StoreId { - StoreId { - base: Some(store.path().clone()), - id: self.id - } - } - pub fn exists(&self) -> bool { let pb : PathBuf = self.clone().into(); pb.exists()