Skip to content

Commit

Permalink
Fixed clippy lint issue (#64)
Browse files Browse the repository at this point in the history
Co-authored-by: Boppy <no-reply@boppygames.gg>
  • Loading branch information
jdetter and Boppy authored Jul 10, 2023
1 parent 8386884 commit c6cb533
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 c6cb533

Please sign in to comment.