summaryrefslogtreecommitdiffstats
path: root/core/object.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-02-20 07:13:54 +0100
committerGitHub <noreply@github.com>2020-02-20 07:13:54 +0100
commit353e2071d06e5e4cfaaa5ce99e5f13ef7e689ddd (patch)
tree6676592039e79b4f0fdd1b194c7e24c74ad8368c /core/object.cpp
parent3afc47bbd68c3ae169ef8e0a051ee71226dca647 (diff)
parenta31bc1b0ba608ef340068676f6709621a37f2140 (diff)
downloadredot-engine-353e2071d06e5e4cfaaa5ce99e5f13ef7e689ddd.tar.gz
Merge pull request #36340 from nathanwfranke/fix-signal-errors
Fix two signal errors, remove unused break_request signals in profilers
Diffstat (limited to 'core/object.cpp')
-rw-r--r--core/object.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/object.cpp b/core/object.cpp
index 0a7a46a7d2..f0b708f047 100644
--- a/core/object.cpp
+++ b/core/object.cpp
@@ -917,7 +917,6 @@ Variant Object::call(const StringName &p_method, const Variant **p_args, int p_a
MethodBind *method = ClassDB::get_method(get_class_name(), p_method);
if (method) {
-
ret = method->call(this, p_args, p_argcount, r_error);
} else {
r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD;