Many clippy lints fixed #488

Merged
lx merged 4 commits from k2v-watch-range-2 into main 2023-01-26 21:10:21 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit c56794655e - Show all commits

View file

@ -269,7 +269,7 @@ impl CountedItem for K2VItem {
&self.partition.partition_key
}
#[allow(clippy::bool_to_int_with_if)]
#[allow(clippy::bool_to_int_with_if)]
fn counts(&self) -> Vec<(&'static str, i64)> {
let values = self.values();

View file

@ -355,7 +355,7 @@ impl CountedItem for Object {
fn counts(&self) -> Vec<(&'static str, i64)> {
let versions = self.versions();
#[allow(clippy::bool_to_int_with_if)]
#[allow(clippy::bool_to_int_with_if)]
let n_objects = if versions.iter().any(|v| v.is_data()) {
1
} else {