* @return model context
*/
private static ModelContext getNewModelContext(
final ModelContext modelContext) {
ModelContext newModelContext = new ModelContext(modelContext);
Comments comments = (Comments) modelContext.getEntities();
comments = comments.getCommentsOrderedByCreationDate(false);
newModelContext.setEntities(comments);
return newModelContext;
}