in commons/src/main/java/com/epam/eco/schemacatalog/fts/AggregationParams.java [63:75]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
AggregationParams that = (AggregationParams) obj;
return
Objects.equals(this.term, that.term) &&
Objects.equals(this.field, that.field) &&
Objects.equals(this.size, that.size);
}