This is an automated email from the ASF dual-hosted git repository. mgrigorov pushed a commit to branch avro-3526-improve-schema-resolution-related-to-byte-types in repository https://gitbox.apache.org/repos/asf/avro.git
commit d485e94245908a7f9d90e26ea3a36d8dc4a83c4d Author: Martin Tzvetanov Grigorov <[email protected]> AuthorDate: Thu May 26 16:19:15 2022 +0300 Remove obsolete TODO in Rust code It has been addressed 2 years ago with https://github.com/flavray/avro-rs/pull/146/files#diff-cfb402317f9a1267396cd28c72ab83f4236dca6ebbf2f87ed850f2b82da5862dR385 Signed-off-by: Martin Tzvetanov Grigorov <[email protected]> --- lang/rust/avro/src/schema.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/lang/rust/avro/src/schema.rs b/lang/rust/avro/src/schema.rs index fa698b10c..dfb9b146e 100644 --- a/lang/rust/avro/src/schema.rs +++ b/lang/rust/avro/src/schema.rs @@ -787,7 +787,6 @@ impl Schema { impl Parser { /// Create a `Schema` from a string representing a JSON Avro schema. fn parse_str(&mut self, input: &str) -> Result<Schema, Error> { - // TODO: (#82) this should be a ParseSchemaError wrapping the JSON error let value = serde_json::from_str(input).map_err(Error::ParseSchemaJson)?; self.parse(&value, &None) }
