mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
Add a nonNullList around orderBys in toString
This commit is contained in:
@ -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(",");
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user