Remove deprecated ExpressionList.setOrderBy() - migrate to orderBy()

Migrate to `.orderBy(String orderBy)`

```java

  /**
   * Deprecated migrate to {@link #orderBy(String)}
   */
  @Deprecated
  Query<T> setOrderBy(String orderBy);

```
This commit is contained in:
Rob Bygrave
2023-06-01 20:34:04 +12:00
parent 4c47a84daf
commit f21caa0755
3 changed files with 0 additions and 16 deletions
@@ -95,12 +95,6 @@ public interface ExpressionList<T> {
*/
OrderBy<T> orderBy();
/**
* Deprecated migrate to {@link #orderBy(String)}
*/
@Deprecated
Query<T> setOrderBy(String orderBy);
/**
* Apply the path properties to the query replacing the select and fetch clauses.
*/