mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Use JSON::stringify
where possible
This commit is contained in:
parent
28f642097a
commit
fe56c1ff75
5 changed files with 5 additions and 9 deletions
|
@ -656,7 +656,7 @@ int DebugAdapterProtocol::parse_variant(const Variant &p_var) {
|
|||
|
||||
bool DebugAdapterProtocol::process_message(const String &p_text) {
|
||||
JSON json;
|
||||
ERR_FAIL_COND_V_MSG(json.parse(p_text) != OK, true, "Mal-formed message!");
|
||||
ERR_FAIL_COND_V_MSG(json.parse(p_text) != OK, true, "Malformed message!");
|
||||
Dictionary params = json.get_data();
|
||||
bool completed = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue