git-svn-id: http://openintents.googlecode.com/svn/trunk/Safe@2357
72b678ce-9140-0410-bee8-
679b907dd61a
package org.openintents.safe;
import java.util.ArrayList;
+import java.util.Collections;
+import java.util.Comparator;
import java.util.List;
import org.openintents.intents.CryptoIntents;
}
}
+ Collections.sort(results, new Comparator<PassEntry>() {
+ public int compare(PassEntry o1, PassEntry o2) {
+ return o1.plainDescription.compareToIgnoreCase(o2.plainDescription);
+ }});
+
updateListFromResults();
}