Merge pull request #57052 from KoBeWi/nosort

This commit is contained in:
Rémi Verschelde 2022-01-23 00:27:01 +01:00 committed by GitHub
commit e1706be25d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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}