in geronimo-openapi-impl/src/main/java/org/apache/geronimo/microprofile/openapi/impl/model/ExternalDocumentationImpl.java [92:102]
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final ExternalDocumentationImpl that = ExternalDocumentationImpl.class.cast(o);
return Objects.equals(_extensible, that._extensible) && Objects.equals(_description,
that._description) && Objects.equals(_url, that._url);
}