Skip to content

Commit f95e213

Browse files
committed
cargo fmt
1 parent d2cb280 commit f95e213

1 file changed

Lines changed: 2 additions & 12 deletions

File tree

src/diff_walker.rs

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -421,12 +421,7 @@ impl<F: FnMut(Change)> DiffWalker<F> {
421421
}
422422
}
423423

424-
fn diff_min_length(
425-
&mut self,
426-
json_path: &str,
427-
lhs: &mut SchemaObject,
428-
rhs: &mut SchemaObject,
429-
) {
424+
fn diff_min_length(&mut self, json_path: &str, lhs: &mut SchemaObject, rhs: &mut SchemaObject) {
430425
let lhs_min = lhs.string().min_length;
431426
let rhs_min = rhs.string().min_length;
432427

@@ -458,12 +453,7 @@ impl<F: FnMut(Change)> DiffWalker<F> {
458453
}
459454
}
460455

461-
fn diff_max_length(
462-
&mut self,
463-
json_path: &str,
464-
lhs: &mut SchemaObject,
465-
rhs: &mut SchemaObject,
466-
) {
456+
fn diff_max_length(&mut self, json_path: &str, lhs: &mut SchemaObject, rhs: &mut SchemaObject) {
467457
let lhs_max = lhs.string().max_length;
468458
let rhs_max = rhs.string().max_length;
469459

0 commit comments

Comments
 (0)