in src/main/java/org/apache/sling/feature/extension/apiregions/api/ApiExport.java [371:386]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
ApiExport other = (ApiExport) obj;
return Objects.equals(deprecation, other.deprecation) && Objects.equals(name, other.name)
&& Objects.equals(previousArtifactId, other.previousArtifactId)
&& Objects.equals(properties, other.properties)
&& Objects.equals(toggle, other.toggle);
}