diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-10-26 08:49:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-26 08:49:38 +0200 |
commit | d135008acfc0772f81fce0877379ab1d37f9ed47 (patch) | |
tree | 8af9021c5de6de4190335f0e2d1c46a962a6b545 /modules/mono | |
parent | 8175a53cea1bd8986fb28873e261227a92c727dd (diff) | |
parent | 2609cc9ef428a9d7d054a06a9290c4d4963e726f (diff) |
Merge pull request #12405 from Jerome67000/clean_getnodetype
Removes Script::get_node_type()
[ci skip]
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/csharp_script.cpp | 5 | ||||
-rw-r--r-- | modules/mono/csharp_script.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index 5155373a00..8d4e19469a 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -1720,11 +1720,6 @@ Error CSharpScript::reload(bool p_keep_state) { return ERR_FILE_MISSING_DEPENDENCIES; } -String CSharpScript::get_node_type() const { - - return ""; // ? -} - ScriptLanguage *CSharpScript::get_language() const { return CSharpLanguage::get_singleton(); diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index 8700b7fc5c..65a6450da5 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -138,7 +138,6 @@ public: virtual bool is_tool() const { return tool; } virtual Ref<Script> get_base_script() const; - virtual String get_node_type() const; virtual ScriptLanguage *get_language() const; /* TODO */ virtual void get_script_method_list(List<MethodInfo> *p_list) const {} |