diff --git a/libimagstore/src/store.rs b/libimagstore/src/store.rs index 266615b3..021e44da 100644 --- a/libimagstore/src/store.rs +++ b/libimagstore/src/store.rs @@ -77,16 +77,16 @@ impl Store { fn create(&self, entry: Entry) -> Result<()> { unimplemented!(); } - fn retrieve<'a>(&'a self, path: StoreId) -> Result> { + fn retrieve<'a>(&'a self, id: StoreId) -> Result> { unimplemented!(); } fn update<'a>(&'a self, entry: FileLockEntry<'a>) -> Result<()> { unimplemented!(); } - fn retrieve_copy(&self, path: StoreId) -> Result { + fn retrieve_copy(&self, id: StoreId) -> Result { unimplemented!(); } - fn delete(&self, path: StoreId) -> Result<()> { + fn delete(&self, id: StoreId) -> Result<()> { unimplemented!(); } }