Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
troyzhxu committed Jun 22, 2022
1 parent 94f0458 commit 74d6d6e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ public boolean isValid(Set<String> fieldSet) {
}

public boolean isAsc() {
return ORDER_ASC.equalsIgnoreCase(sort);
return ORDER_ASC.equalsIgnoreCase(order);
}

public boolean isDesc() {
return ORDER_DESC.equalsIgnoreCase(sort);
return ORDER_DESC.equalsIgnoreCase(order);
}

public OrderBy asc() {
Expand Down

0 comments on commit 74d6d6e

Please sign in to comment.