Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
guojidan committed Dec 5, 2023
1 parent 0f996fa commit 5cb427e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/storage/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ pub trait Transaction: Sync + Send + 'static {

#[allow(async_fn_in_trait)]
async fn commit(self) -> Result<(), StorageError>;
fn remove_cache(&self, _key: &String) -> Result<(), StorageError> { Ok(()) }
fn remove_cache(&self, _key: &String) -> Result<(), StorageError> {
Ok(())
}
}

enum IndexValue {
Expand Down

0 comments on commit 5cb427e

Please sign in to comment.