Skip to content

Commit

Permalink
Run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
skeet70 committed Jan 14, 2025
1 parent 2420e11 commit d7c4fa4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/tx/write/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,11 @@ impl BaseTransaction {
/// # Errors
///
/// Will return `Err` if an IO error occurs.
pub(super) fn remove_single<K: Into<UserKey>>(&mut self, partition: &TxPartitionHandle, key: K) {
pub(super) fn remove_single<K: Into<UserKey>>(
&mut self,
partition: &TxPartitionHandle,
key: K,
) {
// TODO: PERF: slow??
self.memtables
.entry(partition.inner.name.clone())
Expand Down

0 comments on commit d7c4fa4

Please sign in to comment.