Index: AE/installer2/src/net/oni2/aeinstaller/backend/packages/PackageManager.java
===================================================================
--- AE/installer2/src/net/oni2/aeinstaller/backend/packages/PackageManager.java	(revision 657)
+++ AE/installer2/src/net/oni2/aeinstaller/backend/packages/PackageManager.java	(revision 658)
@@ -10,10 +10,6 @@
 import java.util.HashMap;
 import java.util.HashSet;
-import java.util.TreeMap;
 import java.util.TreeSet;
 import java.util.Vector;
-
-import com.thoughtworks.xstream.XStream;
-import com.thoughtworks.xstream.io.xml.StaxDriver;
 
 import net.oni2.aeinstaller.backend.Paths;
@@ -22,4 +18,7 @@
 import net.oni2.aeinstaller.backend.depot.model.TaxonomyTerm;
 import net.oni2.aeinstaller.backend.oni.Installer;
+
+import com.thoughtworks.xstream.XStream;
+import com.thoughtworks.xstream.io.xml.StaxDriver;
 
 /**
@@ -217,9 +216,9 @@
 	 * @return Collection of tools valid on this platform and not core
 	 */
-	public TreeMap<String, Package> getTools() {
-		TreeMap<String, Package> res = new TreeMap<String, Package>();
+	public Collection<Package> getTools() {
+		Vector<Package> res = new Vector<Package>();
 		for (Package m : tools.values())
 			if (m.isValidOnPlatform() && !m.isCorePackage())
-				res.put(m.getName(), m);
+				res.add(m);
 		return res;
 	}
