summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2018-11-11 15:35:09 -0200
committerMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2018-11-11 15:35:09 -0200
commit8a08a9fb6a833aa2cfd7c68596c2c0a3a9f30b65 (patch)
tree7764edf2480f2c263e7613ac97675eef1ed354fc /editor
parentd16ce4a8edb26fb4730c51405662479f7ebf6617 (diff)
Remove unused variable in ScriptEditorDebugger
Diffstat (limited to 'editor')
-rw-r--r--editor/script_editor_debugger.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/script_editor_debugger.cpp b/editor/script_editor_debugger.cpp
index ba9837ef6e..089ffa285d 100644
--- a/editor/script_editor_debugger.cpp
+++ b/editor/script_editor_debugger.cpp
@@ -467,7 +467,6 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
String type = p_data[1];
Array properties = p_data[2];
- bool is_new_object = false;
if (remote_objects.has(id)) {
debugObj = remote_objects[id];
} else {
@@ -475,7 +474,6 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
debugObj->remote_object_id = id;
debugObj->type_name = type;
remote_objects[id] = debugObj;
- is_new_object = true;
debugObj->connect("value_edited", this, "_scene_tree_property_value_edited");
}