in commons/src/main/java/com/epam/eco/schemacatalog/fts/QueryStringQuery.java [56:68]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
QueryStringQuery that = (QueryStringQuery) obj;
return
Objects.equals(this.queryString, that.queryString) &&
Objects.equals(this.getPage(), that.getPage()) &&
Objects.equals(this.getPageSize(), that.getPageSize());
}