Merge pull request #74028 from voidedWarranties/scriptlanguage_unused
Remove unused `ScriptLanguage` methods
This commit is contained in:
commit
ec8475af5e
8 changed files with 0 additions and 73 deletions
|
|
@ -2027,11 +2027,6 @@ String GDScriptLanguage::get_extension() const {
|
|||
return "gd";
|
||||
}
|
||||
|
||||
Error GDScriptLanguage::execute_file(const String &p_path) {
|
||||
// ??
|
||||
return OK;
|
||||
}
|
||||
|
||||
void GDScriptLanguage::finish() {
|
||||
if (_call_stack) {
|
||||
memdelete_arr(_call_stack);
|
||||
|
|
|
|||
|
|
@ -473,7 +473,6 @@ public:
|
|||
virtual void init() override;
|
||||
virtual String get_type() const override;
|
||||
virtual String get_extension() const override;
|
||||
virtual Error execute_file(const String &p_path) override;
|
||||
virtual void finish() override;
|
||||
|
||||
/* EDITOR FUNCTIONS */
|
||||
|
|
|
|||
|
|
@ -92,11 +92,6 @@ String CSharpLanguage::get_extension() const {
|
|||
return "cs";
|
||||
}
|
||||
|
||||
Error CSharpLanguage::execute_file(const String &p_path) {
|
||||
// ??
|
||||
return OK;
|
||||
}
|
||||
|
||||
void CSharpLanguage::init() {
|
||||
#ifdef DEBUG_METHODS_ENABLED
|
||||
if (OS::get_singleton()->get_cmdline_args().find("--class-db-json")) {
|
||||
|
|
|
|||
|
|
@ -413,7 +413,6 @@ public:
|
|||
/* LANGUAGE FUNCTIONS */
|
||||
String get_type() const override;
|
||||
String get_extension() const override;
|
||||
Error execute_file(const String &p_path) override;
|
||||
void init() override;
|
||||
void finish() override;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue