Skip to content

Commit

Permalink
(#29) Added cursor to hash and equals again by accident
Browse files Browse the repository at this point in the history
  • Loading branch information
svettwer committed Feb 12, 2019
1 parent 52cf0e5 commit 8dc69d1
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,12 @@ public boolean equals(final Object o) {
if (this == o) return true;
if (!(o instanceof DataSet)) return false;
final DataSet dataSet = (DataSet) o;
return Objects.equals(rows, dataSet.rows) &&
Objects.equals(cursor, dataSet.cursor);
return Objects.equals(rows, dataSet.rows);
}

@Override
public int hashCode() {
return Objects.hash(rows, cursor);
return Objects.hash(rows);
}

@Override
Expand Down

0 comments on commit 8dc69d1

Please sign in to comment.