Check null on ugly sql sort.

This commit is contained in:
Olof Larsson 2011-12-13 00:30:03 +01:00
parent b49494d559
commit 5080d60a5c

View File

@ -142,7 +142,10 @@ public class Persist
} }
// ORDERBY // ORDERBY
if (orderby != null)
{
Collections.sort(ret, orderby); Collections.sort(ret, orderby);
}
// LIMIT AND OFFSET // LIMIT AND OFFSET
// Parse args // Parse args