Fixed sorting of json nodes in RiderIconsMapping.json

GitOrigin-RevId: 0c8681acd72cf6f3c260a231b429ff67e633d254
This commit is contained in:
Alexey Korovin
2024-04-18 14:42:12 +02:00
committed by intellij-monorepo-bot
parent 6d59284fd3
commit 7ad7377de7

View File

@@ -55,7 +55,7 @@ object RiderIconsJsonGenerator {
g.key.relativeTo(iconsResourcesPath) to obj
}
.sortedBy { it.first }
.sortedBy { it.first.name }
val tree = hashMapOf<Path, JsonObject>()