}
// Sort by item
String sortItem = getSortitem();
if (sortItem != null) {
comparator = new ContentComparator(this, false, sortItem, collator);
}
// Sort by meta
String sortMeta = getSortmeta();
if (sortMeta != null) {
comparator = new ContentComparator(this, true, sortMeta, collator);
}
if (comparator != null) {
java.util.Collections.sort(objects, comparator);
}