Skip to content

Commit

Permalink
Revert "[JENKINS-34047] Case insensitive sorting"
Browse files Browse the repository at this point in the history
  • Loading branch information
recena committed Apr 7, 2016
1 parent 4d17929 commit 0079016
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -77,7 +77,6 @@
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import java.util.Comparator;
import java.util.logging.Level;
import java.util.logging.Logger;

Expand Down Expand Up @@ -497,7 +496,7 @@ public ListBoxModel doFillScanCredentialsIdItems(@AncestorInPath SCMSourceOwner

public ListBoxModel doFillRepositoryItems(@AncestorInPath SCMSourceOwner context, @QueryParameter String apiUri,
@QueryParameter String scanCredentialsId, @QueryParameter String repoOwner) {
Set<String> result = new TreeSet<>(String.CASE_INSENSITIVE_ORDER);
Set<String> result = new TreeSet<>();

repoOwner = Util.fixEmptyAndTrim(repoOwner);
if (repoOwner == null) {
Expand Down

0 comments on commit 0079016

Please sign in to comment.