Replaces bare Arc::default() in CacheHashData::new() (#35017)

This commit is contained in:
Brooks 2024-01-31 10:52:59 -05:00 committed by GitHub
parent b3ea62fba3
commit 0569304835
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ impl CacheHashData {
cache_dir,
pre_existing_cache_files: Arc::new(Mutex::new(HashSet::default())),
deletion_policy,
stats: Arc::default(),
stats: Arc::new(CacheHashDataStats::default()),
};
result.get_cache_files();