From 290502e38770fb82950814ef49f8f597d2df731f Mon Sep 17 00:00:00 2001 From: Oleg Shpynov Date: Tue, 29 Mar 2011 14:51:15 +0400 Subject: [PATCH] Do not sort twice --- .../jetbrains/plugins/github/ui/GithubCloneProjectDialog.java | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/github/src/org/jetbrains/plugins/github/ui/GithubCloneProjectDialog.java b/plugins/github/src/org/jetbrains/plugins/github/ui/GithubCloneProjectDialog.java index 8de8fc2c2110..cf2f38816d66 100644 --- a/plugins/github/src/org/jetbrains/plugins/github/ui/GithubCloneProjectDialog.java +++ b/plugins/github/src/org/jetbrains/plugins/github/ui/GithubCloneProjectDialog.java @@ -33,7 +33,6 @@ public class GithubCloneProjectDialog extends DialogWrapper { myRepositoryInfoHashMap.put(repo.getId(), repo); } final ArrayList ids = new ArrayList(myRepositoryInfoHashMap.keySet()); - Collections.sort(ids); myGithubCloneProjectPane.setAvailableRepos(ids); init(); setOKActionEnabled(false);