Merge branch 'dump_rta'
[nit.git] / src / model_viz.nit
index 6b6db4c..ba851e8 100644 (file)
@@ -39,8 +39,6 @@ class MProjectTree
                end
        end
 
-       var alpha_comparator = new AlphaComparator
-
        var linex_comparator: nullable LinexComparator = null
 
        # Sort modules and groups with their names
@@ -61,12 +59,6 @@ class MProjectTree
        end
 end
 
-# Just compare objects by using the `to_s` method
-private class AlphaComparator
-       super AbstractSorter[Object]
-       redef fun compare(a,b) do return a.to_s <=> b.to_s
-end
-
 # Compare modules and groups using the
 # FIXME do not use Object, but a better common interface of MModule and MGroup
 private class LinexComparator