The list is not modifiable, obviously your client method is creating an unmodifiable list (using e.g. Collections#unmodifiableList
etc.). Simply create a modifiable list before sorting:
List<String> modifiableList = new ArrayList<String>(unmodifiableList);
Collections.sort(modifiableList, comparator);