Преглед на файлове

Remove unnecessary empty line from Dictionaries

(cherry picked from commit 7b1ad6fbe019da0e59bec9ceb9b68c0b5b766833)
Tomasz Chabora преди 4 години
родител
ревизия
b3a23b2efb
променени са 1 файла, в които са добавени 5 реда и са изтрити 2 реда
  1. 5 2
      core/variant_parser.cpp

+ 5 - 2
core/variant_parser.cpp

@@ -1750,11 +1750,14 @@ Error VariantWriter::write(const Variant &p_variant, StoreStringFunc p_store_str
 				write(E->get(), p_store_string_func, p_store_string_ud, p_encode_res_func, p_encode_res_ud);
 				p_store_string_func(p_store_string_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");
+				} 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;
 		case Variant::ARRAY: {