Add a nonNullList around orderBys in toString

This commit is contained in:
2023-12-22 19:09:34 -06:00
parent 940c5ca8de
commit a37a0b489d

View File

@ -359,7 +359,7 @@ public class QQueryFilter implements Serializable, Cloneable
rs.append(")"); rs.append(")");
rs.append("OrderBy["); rs.append("OrderBy[");
for(QFilterOrderBy orderBy : orderBys) for(QFilterOrderBy orderBy : CollectionUtils.nonNullList(orderBys))
{ {
rs.append(orderBy).append(","); rs.append(orderBy).append(",");
} }