HuwCampbell commented on PR #3046: URL: https://github.com/apache/avro/pull/3046#issuecomment-2254140507
This is in [Schema.java](https://github.com/apache/avro/blob/main/lang/java/avro/src/main/java/org/apache/avro/Schema.java#L1235C1-L1245C4). ```java @Override @Deprecated void toJson(Set<String> knownNames, String currentNamespace, JsonGenerator gen) throws IOException { gen.writeStartObject(); gen.writeStringField("type", "map"); gen.writeFieldName("values"); valueType.toJson(knownNames, currentNamespace, gen); writeProps(gen); gen.writeEndObject(); } ``` Props are written, but there's no default value to be seen. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
