Don't sort printed Dictionary

This commit is contained in:
kobewi 2022-01-22 02:15:41 +01:00
parent 0e2842d5b2
commit f056cb8ebc
2 changed files with 1 additions and 3 deletions

View File

@ -1692,8 +1692,6 @@ String Variant::stringify(int recursion_count) const {
pairs.push_back(sp);
}
pairs.sort();
for (int i = 0; i < pairs.size(); i++) {
if (i > 0) {
str += ", ";

View File

@ -1,2 +1,2 @@
GDTEST_OK
{2:4, a:1, b:2, with spaces:3}
{a:1, b:2, with spaces:3, 2:4}