in src/main/java/net/hydromatic/linq4j/expressions/MethodCallExpression.java [112:137]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}
MethodCallExpression that = (MethodCallExpression) o;
if (!expressions.equals(that.expressions)) {
return false;
}
if (!method.equals(that.method)) {
return false;
}
if (targetExpression != null ? !targetExpression.equals(that
.targetExpression) : that.targetExpression != null) {
return false;
}
return true;
}