Merge pull request #42300 from KoBeWi/noline

Remove unnecessary empty line from Dictionaries
This commit is contained in:
Rémi Verschelde 2020-09-24 14:12:44 +02:00 committed by GitHub
commit 5e24232597
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1608,10 +1608,12 @@ Error VariantWriter::write(const Variant &p_variant, StoreStringFunc p_store_str
write(dict[E->get()], p_store_string_func, p_store_string_ud, p_encode_res_func, p_encode_res_ud); write(dict[E->get()], p_store_string_func, p_store_string_ud, p_encode_res_func, p_encode_res_ud);
if (E->next()) { if (E->next()) {
p_store_string_func(p_store_string_ud, ",\n"); p_store_string_func(p_store_string_ud, ",\n");
} else {
p_store_string_func(p_store_string_ud, "\n");
} }
} }
p_store_string_func(p_store_string_ud, "\n}"); p_store_string_func(p_store_string_ud, "}");
} break; } break;
case Variant::ARRAY: { case Variant::ARRAY: {