From 21440d58aa19ba06d2d153da3a3ee6b774228b07 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 9 Sep 2017 21:13:38 +0200 Subject: [PATCH] Remove outdated comment --- lib/core/libimagstore/src/store.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/core/libimagstore/src/store.rs b/lib/core/libimagstore/src/store.rs index dbb00182..fe9e2da1 100644 --- a/lib/core/libimagstore/src/store.rs +++ b/lib/core/libimagstore/src/store.rs @@ -243,12 +243,7 @@ impl Store { /// # Return values /// /// - On success: Store object - /// - On Failure: - /// - ConfigurationError if config is faulty - /// - IoError(FileError(CreateStoreDirDenied())) if store location does not exist and creating - /// is denied - /// - StorePathCreate(_) if creating the store directory failed - /// - StorePathExists() if location exists but is a file + /// pub fn new(location: PathBuf, store_config: Option) -> Result { let backend = Box::new(FSFileAbstraction::new()); Store::new_with_backend(location, store_config, backend)