in src/main/java/org/apache/nifi/components/ValidationResult.java [77:98]
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final ValidationResult other = (ValidationResult) obj;
if (!Objects.equals(this.subject, other.subject)) {
return false;
}
if (!Objects.equals(this.input, other.input)) {
return false;
}
if (!Objects.equals(this.explanation, other.explanation)) {
return false;
}
if (this.valid != other.valid) {
return false;
}
return true;
}