Skip to content

Commit eeb4daa

Browse files
authored
Fix clippy lints (#42)
1 parent f49845a commit eeb4daa

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ path = "src/bin/main.rs"
2020

2121
[dependencies]
2222
anyhow = { version = "1.0.70", optional = true }
23-
clap = { version = "4.1.13", features = ["std", "derive", "usage", "help"], default_features = false, optional = true }
24-
schemars = { version = "0.8.12", default_features = false }
23+
clap = { version = "4.1.13", features = ["std", "derive", "usage", "help"], default-features = false, optional = true }
24+
schemars = { version = "0.8.12", default-features = false }
2525
serde = "1.0.158"
2626
serde_json = "1.0.94"
2727
thiserror = "1.0.40"

src/diff_walker.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ impl<F: FnMut(Change)> DiffWalker<F> {
117117
},
118118
}),
119119
(Some(l), Some(r)) if l != r => {
120-
if l.is_object() && r.is_object() {}
121120
(self.cb)(Change {
122121
path: json_path.to_owned(),
123122
change: ChangeKind::ConstRemove { removed: l.clone() },
@@ -556,7 +555,7 @@ impl JsonSchemaExt for SchemaObject {
556555
.any_of
557556
.as_ref()
558557
.filter(|schemas| schemas.len() == 1)
559-
.and_then(|a| a.get(0))
558+
.and_then(|a| a.first())
560559
.map(|subschema| subschema.clone().into_object().number().clone())
561560
.unwrap_or_default()
562561
} else {

0 commit comments

Comments
 (0)