Skip to content

Commit

Permalink
Fix the SchemaPropsOptions POJO, which getRequired() getter returns t…
Browse files Browse the repository at this point in the history
…he wrong field value (#4395)

Co-authored-by: Fabio Burzigotti <fburzigo@redhat.com>
  • Loading branch information
fabiobrz and Fabio Burzigotti committed Sep 7, 2022
1 parent 95d414f commit f4dcd32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public boolean isNullable() {
}

public boolean getRequired() {
return nullable;
return required;
}
}

Expand Down

0 comments on commit f4dcd32

Please sign in to comment.