Styling: remove some whitespace and a scope

This commit is contained in:
Julian Ganz 2016-01-17 19:08:15 +01:00
parent e6c05e4f5b
commit 82ed978e90

View file

@ -157,7 +157,7 @@ impl Store {
// remove the entry first, then the file // remove the entry first, then the file
entries.remove(&id); entries.remove(&id);
remove_file(&id).map_err( |e| { StoreError::new(StoreErrorKind::FileError, Some(Box::new(e))) } ) remove_file(&id).map_err(|e| StoreError::new(StoreErrorKind::FileError, Some(Box::new(e))))
} }
} }