Skip to content

Commit

Permalink
Fixed clippy lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Boppy committed Jul 10, 2023
1 parent 8386884 commit b1531c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core/src/db/commit_log.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl CommitLog {
}
}

fn generate_commit<D: MutTxDatastore<RowId = RowId>>(&self, tx_data: &TxData, datastore: &D) -> Option<Vec<u8>> {
fn generate_commit<D: MutTxDatastore<RowId = RowId>>(&self, tx_data: &TxData, _datastore: &D) -> Option<Vec<u8>> {
let mut unwritten_commit = self.unwritten_commit.lock().unwrap();
let writes = tx_data
.records
Expand Down

0 comments on commit b1531c9

Please sign in to comment.