Skip to content

Commit

Permalink
fixes #384 Fix the PojoSchema to add new methods as openapi-parser is…
Browse files Browse the repository at this point in the history
… changed (#385)
  • Loading branch information
stevehu authored Jul 18, 2024
1 parent c84e18e commit 9fa76c9
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -611,6 +611,21 @@ public void setAdditionalProperties(Boolean additionalProperties) {

}

@Override
public Boolean getUnevaluatedProperties() {
return null;
}

@Override
public boolean isUnevaluatedProperties() {
return false;
}

@Override
public void setUnevaluatedProperties(Boolean additionalProperties) {

}

@Override
public String getDescription() {
// TODO Auto-generated method stub
Expand Down

0 comments on commit 9fa76c9

Please sign in to comment.