Skip to content

Commit

Permalink
clippy cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
chupaty authored and martin-g committed Jan 10, 2025
1 parent 9b87f8b commit ce93e4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions avro/src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1232,18 +1232,18 @@ impl Schema {
}
Schema::Record(r) => {
for rr in &mut r.fields {
let _ = rr.schema.denormalize(schemata)?;
rr.schema.denormalize(schemata)?;
}
}
Schema::Array(a) => {
let _ = a.items.denormalize(schemata)?;
a.items.denormalize(schemata)?;
}
Schema::Map(m) => {
let _ = m.types.denormalize(schemata)?;
m.types.denormalize(schemata)?;
}
Schema::Union(u) => {
for uu in &mut u.schemas {
let _ = uu.denormalize(schemata)?;
uu.denormalize(schemata)?;
}
}
_ => (),
Expand Down

0 comments on commit ce93e4c

Please sign in to comment.