in sarif/src/main/java/com/jetbrains/qodana/sarif/model/Tool.java [144:154]
public boolean equals(Object other) {
if (other == this) {
return true;
}
if (!(other instanceof Tool)) {
return false;
}
Tool rhs = ((Tool) other);
//noinspection ConstantValue,EqualsReplaceableByObjectsCall,StringEquality,NumberEquality
return ((((this.extensions == rhs.extensions) || ((this.extensions != null) && this.extensions.equals(rhs.extensions))) && ((this.driver == rhs.driver) || ((this.driver != null) && this.driver.equals(rhs.driver)))) && ((this.properties == rhs.properties) || ((this.properties != null) && this.properties.equals(rhs.properties))));
}