Skip to content

Commit dd03736

Browse files
jdettercloutiertyler
authored andcommitted
Fixed clippy lint issue (#64)
Co-authored-by: Boppy <[email protected]>
1 parent ca0814d commit dd03736

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/core/src/db/commit_log.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ impl CommitLog {
5757
}
5858
}
5959

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

0 commit comments

Comments
 (0)