cargo fmt

This commit is contained in:
Heikki Linnakangas
2025-07-03 16:16:42 +03:00
parent 3293e4685e
commit 956c2f4378

View File

@@ -742,7 +742,8 @@ impl<'t> IntegratedCacheReadAccess<'t> {
/// Check if the given page is present in the cache
pub fn cache_contains_page(&'t self, rel: &RelTag, block_number: u32) -> bool {
self.block_map
.get(&BlockKey::from((rel, block_number))).is_some()
.get(&BlockKey::from((rel, block_number)))
.is_some()
}
}