bulk code format fix (#8707)

This commit is contained in:
Derek Bailey
2025-09-23 21:50:27 -07:00
committed by GitHub
parent 0e047869da
commit caf3b494db
559 changed files with 38871 additions and 31276 deletions

View File

@@ -156,12 +156,7 @@ fn verify_table(
}
_ => {
return Err(FlatbufferError::TypeNotSupported(
field
.type_()
.base_type()
.variant_name()
.unwrap_or_default()
.to_string(),
field.type_().base_type().variant_name().unwrap_or_default().to_string(),
));
}
};
@@ -342,12 +337,7 @@ fn verify_vector<'a, 'b, 'c>(
}
_ => {
return Err(FlatbufferError::TypeNotSupported(
field
.type_()
.base_type()
.variant_name()
.unwrap_or_default()
.to_string(),
field.type_().base_type().variant_name().unwrap_or_default().to_string(),
))
}
}
@@ -401,11 +391,7 @@ fn verify_union<'a, 'b, 'c>(
}
_ => {
return Err(FlatbufferError::TypeNotSupported(
enum_type
.base_type()
.variant_name()
.unwrap_or_default()
.to_string(),
enum_type.base_type().variant_name().unwrap_or_default().to_string(),
))
}
}