Index: trunk/scripts/SyncEditorLayerIndex.groovy
===================================================================
--- trunk/scripts/SyncEditorLayerIndex.groovy	(revision 11981)
+++ trunk/scripts/SyncEditorLayerIndex.groovy	(revision 11983)
@@ -513,6 +513,6 @@
             et = getProjections(e)
             jt = getProjections(j)
-            if (et) et = String.join(" ", et.toSorted());
-            if (jt) jt = String.join(" ", jt.toSorted());
+            if (et) { et = new LinkedList(et); Collections.sort(et); et = String.join(" ", et) }
+            if (jt) { jt = new LinkedList(jt); Collections.sort(jt); jt = String.join(" ", jt) }
             if (!et.equals(jt)) {
                 if (!jt) {
