From 418ab5b9ebb9284a9bf73b85d95fca9c7d211331 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=BCller?= Date: Sat, 16 Jan 2016 20:03:46 +0100 Subject: [PATCH] Rename path arguments to id --- libimagstore/src/store.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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!(); } }