return;
}
// Creates a string representing the current selection
StringBuilder selection = new StringBuilder();
Collections.sort(selectedAlgorithms, new CheckErrorAlgorithmComparator());
for (CheckErrorAlgorithm algorithm : selectedAlgorithms) {
if (selection.length() > 0) {
selection.append(",");
}
selection.append(algorithm.getErrorNumber());