diff mx/mx_graal.py @ 18601:676f1800077c

mx: removed unused _read_projects_file function
author Doug Simon <doug.simon@oracle.com>
date Wed, 03 Dec 2014 16:02:36 +0100
parents df8d52aba789
children 7d8270532cd9
line wrap: on
line diff
--- a/mx/mx_graal.py	Wed Dec 03 14:50:16 2014 +0100
+++ b/mx/mx_graal.py	Wed Dec 03 16:02:36 2014 +0100
@@ -2113,7 +2113,7 @@
     candidates = mx.findclass(args, logToConsole=False, matcher=lambda s, classname: s == classname or classname.endswith('.' + s) or classname.endswith('$' + s))
 
     if len(candidates) > 0:
-        candidates = mx.select_items(list(mx.OrderedDict.fromkeys(candidates)))
+        candidates = mx.select_items(sorted(candidates))
     else:
         # mx.findclass can be mistaken, don't give up yet
         candidates = args