Skip to content

Commit

Permalink
Merge pull request #27736 from njr-11/26253-spec-update-to-add-getSorts
Browse files Browse the repository at this point in the history
spec API update to add Order.getSorts
  • Loading branch information
njr-11 committed Feb 26, 2024
2 parents dc0c3da + a8107cc commit c0cc6af
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -39,6 +39,10 @@ public boolean equals(Object other) {
other instanceof Order && sortBy.equals(((Order<?>) other).sortBy);
}

public List<Sort<T>> sorts() {
return sortBy;
}

@Override
public int hashCode() {
return sortBy.hashCode();
Expand Down

0 comments on commit c0cc6af

Please sign in to comment.