Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions ebean-api/src/main/java/io/ebean/ExpressionList.java
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,11 +312,6 @@ public ExpressionList<T> orderBy(String orderBy) {
return this;
}

@Override
public Query<T> setOrderBy(String orderBy) {
return query.order(orderBy);
}

@Override
public Query<T> orderById(boolean orderById) {
return query.orderById(orderById);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -980,11 +980,6 @@ public ExpressionList<T> setMaxRows(int maxRows) {
return exprList.setMaxRows(maxRows);
}

@Override
public Query<T> setOrderBy(String orderBy) {
return exprList.setOrderBy(orderBy);
}

@Override
public Query<T> setUseCache(boolean useCache) {
return exprList.setUseCache(useCache);
Expand Down