created.addSortingExpression(informer, direction);
found = true;
}
}
if(!found) {
throw new UnableToBuildDueToMissingSortingExpression(consumableText, method, fieldEntry.getKey(),SortingExpression.Direction.values());
}
// Sorting can only be combined with And text
if(consumableText.startsWith(SORT_BY_COMBINATOR)) {
consumableText = consumableText.substring(SORT_BY_COMBINATOR.length());
}