mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-09 21:13:03 +08:00
fixed generic signature issue
This commit is contained in:
parent
668631e20d
commit
9cab283597
@ -80,7 +80,7 @@ public class InnerQuery extends QueryBase<Object, InnerQuery> {
|
||||
Expr<Object>[] orderByExpr = new Expr[orderBy.size()];
|
||||
boolean[] directions = new boolean[orderBy.size()];
|
||||
for (int i = 0; i < orderBy.size(); i++){
|
||||
orderByExpr[i] = (Expr<Object>)orderBy.get(i).target;
|
||||
orderByExpr[i] = (Expr)orderBy.get(i).target;
|
||||
directions[i] = orderBy.get(i).order == Order.ASC;
|
||||
}
|
||||
Expr<?> expr = new CArray<Object>(Object.class, orderByExpr);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user