Remove outdated comment
This commit is contained in:
parent
3d8f75300d
commit
21440d58aa
1 changed files with 1 additions and 6 deletions
|
@ -243,12 +243,7 @@ impl Store {
|
||||||
/// # Return values
|
/// # Return values
|
||||||
///
|
///
|
||||||
/// - On success: Store object
|
/// - 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<Value>) -> Result<Store> {
|
pub fn new(location: PathBuf, store_config: Option<Value>) -> Result<Store> {
|
||||||
let backend = Box::new(FSFileAbstraction::new());
|
let backend = Box::new(FSFileAbstraction::new());
|
||||||
Store::new_with_backend(location, store_config, backend)
|
Store::new_with_backend(location, store_config, backend)
|
||||||
|
|
Loading…
Reference in a new issue