summaryrefslogtreecommitdiff
path: root/modules/mono/editor
diff options
context:
space:
mode:
authorIgnacio Etcheverry <neikeq@users.noreply.github.com>2017-10-16 03:58:51 +0200
committerGitHub <noreply@github.com>2017-10-16 03:58:51 +0200
commit1a9efb417a20d2753a942cc5d4d2d46ce8cde7fb (patch)
tree04a8a8134066f74cf94e312ea7d03a47b3be45a1 /modules/mono/editor
parent0d0cb01f3385d512de0f91b0d73706a3380ec063 (diff)
parent63369ec3066195a7d282d2345beecb50bfd7de3d (diff)
Merge pull request #12135 from neikeq/g
Re-write SignalAwaiter implementation
Diffstat (limited to 'modules/mono/editor')
-rw-r--r--modules/mono/editor/bindings_generator.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/mono/editor/bindings_generator.cpp b/modules/mono/editor/bindings_generator.cpp
index 704910c5b9..c122795fce 100644
--- a/modules/mono/editor/bindings_generator.cpp
+++ b/modules/mono/editor/bindings_generator.cpp
@@ -904,10 +904,6 @@ Error BindingsGenerator::_generate_cs_type(const TypeInterface &itype, const Str
return ERR_BUG;
}
- cs_file.push_back(MEMBER_BEGIN "private void _AwaitedSignalCallback(");
- cs_file.push_back(array_itype->get().cs_type);
- cs_file.push_back(" args, SignalAwaiter awaiter)\n" OPEN_BLOCK_L2 "awaiter.SignalCallback(args);\n" CLOSE_BLOCK_L2);
-
Map<String, TypeInterface>::Element *object_itype = obj_types.find("Object");
if (!object_itype) {