remove redundant `mut`s (#31696)

This commit is contained in:
Jeff Washington (jwash) 2023-05-18 13:08:13 -05:00 committed by GitHub
parent e84613b54c
commit 9fd6f09984
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -7193,7 +7193,7 @@ impl AccountsDb {
&self,
storages: &SortedStorages,
slots_per_epoch: Slot,
mut stats: &mut crate::accounts_hash::HashStats,
stats: &mut crate::accounts_hash::HashStats,
) {
// Nothing to do if ancient append vecs are enabled.
// Ancient slots will be visited by the ancient append vec code and dealt with correctly.
@ -7428,7 +7428,7 @@ impl AccountsDb {
&self,
cache_hash_data: &CacheHashData,
storages: &SortedStorages,
mut stats: &mut crate::accounts_hash::HashStats,
stats: &mut crate::accounts_hash::HashStats,
bins: usize,
bin_range: &Range<usize>,
config: &CalcAccountsHashConfig<'_>,

View File

@ -86,7 +86,7 @@ impl AccountHashesFile {
// we have hashes to write but no file yet, so create a file that will auto-delete on drop
self.count_and_writer = Some((0, BufWriter::new(tempfile().unwrap())));
}
let mut count_and_writer = self.count_and_writer.as_mut().unwrap();
let count_and_writer = self.count_and_writer.as_mut().unwrap();
assert_eq!(
std::mem::size_of::<Hash>(),
count_and_writer.1.write(hash.as_ref()).unwrap()
@ -1041,7 +1041,7 @@ impl AccountsHasher {
pub fn rest_of_hash_calculation(
&self,
data_sections_by_pubkey: Vec<SortedDataByPubkey<'_>>,
mut stats: &mut HashStats,
stats: &mut HashStats,
) -> (Hash, u64) {
let (hashes, total_lamports) = self.de_dup_accounts(
&data_sections_by_pubkey,

View File

@ -321,7 +321,7 @@ impl CacheHashData {
capacity,
};
let mut header = cache_file.get_header_mut();
let header = cache_file.get_header_mut();
header.count = entries;
stats.cache_file_size = capacity as usize;