Skip to content

Commit

Permalink
Fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
opwvhk committed May 17, 2024
1 parent 2a4193f commit 3e267c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/opwvhk/avro/io/AsAvroParserBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ protected static Predicate<Schema> logicalType(Class<? extends LogicalType> logi
* @param model the model to create records and enum symbols with
* @param writeSchema the write schema to parse
* @param readSchema the read schema to parse into
* @see #AsAvroParserBase(GenericData, WriteSchema, Schema, Set, ZoneId)
* @see AsAvroParserBase#AsAvroParserBase(GenericData, WriteSchema, Schema, Set<Schema.Field>, ZoneId)
*/
protected AsAvroParserBase(GenericData model, WriteSchema writeSchema, Schema readSchema) {
this(model, writeSchema, readSchema, Set.of(), UTC);
Expand All @@ -188,7 +188,7 @@ protected AsAvroParserBase(GenericData model, WriteSchema writeSchema, Schema re
* @param writeSchema the write schema to parse
* @param readSchema the read schema to parse into
* @param fieldsAllowedMissing fields in the read schema that are allowed to be missing, even when this yields invalid records
* @see #AsAvroParserBase(GenericData, WriteSchema, Schema, Set, ZoneId)
* @see #AsAvroParserBase(GenericData, WriteSchema, Schema, Set<Schema.Field>, ZoneId)
*/
protected AsAvroParserBase(GenericData model, WriteSchema writeSchema, Schema readSchema, Set<Schema.Field> fieldsAllowedMissing) {
this(model, writeSchema, readSchema, fieldsAllowedMissing, UTC);
Expand Down

0 comments on commit 3e267c9

Please sign in to comment.